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 479f0ee071f..231849908eb 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@external", "@key", "@provides", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@external", "@key", "@provides", "@tag", "FieldSet"] + ) { query: Query } @@ -53,7 +56,9 @@ scalar FieldSet 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( 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 479f0ee071f..231849908eb 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@external", "@key", "@provides", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@external", "@key", "@provides", "@tag", "FieldSet"] + ) { query: Query } @@ -53,7 +56,9 @@ scalar FieldSet 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( 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 8380c62c776..0ea778e189e 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@external", "@key", "@provides", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@external", "@key", "@provides", "@tag", "FieldSet"] + ) { query: Query } @@ -53,7 +56,9 @@ scalar FieldSet 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( 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 8380c62c776..0ea778e189e 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@external", "@key", "@provides", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@external", "@key", "@provides", "@tag", "FieldSet"] + ) { query: Query } @@ -53,7 +56,9 @@ scalar FieldSet 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( 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 791178f4e83..6dfe73e081d 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,6 +1,9 @@ schema @composeDirective(name: "@custom") - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@composeDirective", "@key", "@tag", "FieldSet"]) + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@composeDirective", "@key", "@tag", "FieldSet"] + ) @link(url: "https://specs.custom.dev/custom/v1.0", import: ["@custom"]) { query: Query } @@ -34,7 +37,9 @@ 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( 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 791178f4e83..6dfe73e081d 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,6 +1,9 @@ schema @composeDirective(name: "@custom") - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@composeDirective", "@key", "@tag", "FieldSet"]) + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@composeDirective", "@key", "@tag", "FieldSet"] + ) @link(url: "https://specs.custom.dev/custom/v1.0", import: ["@custom"]) { query: Query } @@ -34,7 +37,9 @@ 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( 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 79382406492..7044086535a 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@external", "@key", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@external", "@key", "@tag", "FieldSet"] + ) { query: Query } @@ -38,7 +41,9 @@ scalar FieldSet 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( 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 5efe62db49e..999e5e4433d 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@external", "@key", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@external", "@key", "@tag", "FieldSet"] + ) { query: Query } @@ -38,7 +41,9 @@ scalar FieldSet 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( 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 8f1e1aa41e0..b882dcfdbb4 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@tag", "FieldSet"] + ) { query: QueryOfTestTypePropertyDirective } @@ -28,7 +31,9 @@ scalar _Any scalar FieldSet "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( 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 29eed3ef4c2..8bcfc0ad9f3 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@tag", "FieldSet"] + ) { query: QueryOfTestTypePropertyDirectives } @@ -29,7 +32,9 @@ scalar _Any scalar FieldSet "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( 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 51230474421..62ab5943f94 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@tag", "FieldSet"] + ) { query: QueryOfTestTypeClassDirective } @@ -33,7 +36,9 @@ scalar _Any scalar FieldSet "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( 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 0efb6b576f2..50399264a27 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@tag", "FieldSet"] + ) { query: Query } @@ -34,7 +37,9 @@ scalar _Any scalar FieldSet "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( 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 c5667ea81cb..99e7d39f78b 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@tag", "FieldSet"] + ) { query: QueryOfTestTypeClassDirective } @@ -28,7 +31,9 @@ scalar _Any scalar FieldSet "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( 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 4fc9ee93db3..79135a31f76 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@tag", "FieldSet"] + ) { query: Query } @@ -29,7 +32,9 @@ scalar _Any scalar FieldSet "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( 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 dff782570a0..0a3dd4f01f4 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@tag", "FieldSet"] + ) { query: QueryOfTestTypePropertyDirective } @@ -24,7 +27,9 @@ scalar _Any scalar FieldSet "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( 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 f4587185208..a8ae5dab381 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@tag", "FieldSet"] + ) { query: QueryOfTestTypePropertyDirectives } @@ -25,7 +28,9 @@ scalar _Any scalar FieldSet "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( 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 8fa0d304004..a5b34d5fd6a 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@tag", "FieldSet"] + ) { query: QueryOfTestTypeClassDirective } @@ -29,7 +32,9 @@ scalar _Any scalar FieldSet "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( 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 5b54a356e89..895cdce653b 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@tag", "FieldSet"] + ) { query: Query } @@ -39,7 +42,9 @@ scalar _Any scalar FieldSet "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( 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 e9d0a42d67f..06ad3e4d55b 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@tag", "FieldSet"] + ) { query: QueryOfTestTypeClassDirective } @@ -24,7 +27,9 @@ scalar _Any scalar FieldSet "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( 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 21c0399ce35..eb0c481ae92 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@tag", "FieldSet"] + ) { query: Query } @@ -34,7 +37,9 @@ scalar _Any scalar FieldSet "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( 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 d675905f048..11bb5c0f22d 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@override", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.0" + import: ["@key", "@override", "@tag", "FieldSet"] + ) { query: Query } @@ -29,7 +32,9 @@ scalar _Any scalar FieldSet "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( 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 36a88062f3f..43ade05fb8a 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.7", import: ["@key", "@override", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.7" + import: ["@key", "@override", "@tag", "FieldSet"] + ) { query: Query } @@ -29,7 +32,9 @@ scalar _Any scalar FieldSet "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( 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 cb9909d379e..5e92f4990b6 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@policy", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@policy", "@tag", "FieldSet"] + ) { query: Query } @@ -28,7 +31,9 @@ scalar _Any scalar FieldSet "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( 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 cb9909d379e..5e92f4990b6 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@policy", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@policy", "@tag", "FieldSet"] + ) { query: Query } @@ -28,7 +31,9 @@ scalar _Any scalar FieldSet "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( 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 8fb8ee88264..a4249414171 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@policy", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@policy", "@tag", "FieldSet"] + ) { query: Query } @@ -28,7 +31,9 @@ scalar _Any scalar FieldSet "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( 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 446db8a8459..27e782f3769 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@provides", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@provides", "@tag", "FieldSet"] + ) { query: Query } @@ -33,7 +36,9 @@ scalar _Any scalar FieldSet "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( 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 37a42825fc6..49338102409 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@provides", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@provides", "@tag", "FieldSet"] + ) { query: Query } @@ -33,7 +36,9 @@ scalar _Any scalar FieldSet "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( 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 718d50b8012..aa1c53ed437 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@requires", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@requires", "@tag", "FieldSet"] + ) { query: Query } @@ -33,7 +36,9 @@ scalar _Any scalar FieldSet "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( 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 c12a0d8f406..a4f909b8a59 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@requires", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@requires", "@tag", "FieldSet"] + ) { query: Query } @@ -33,7 +36,9 @@ scalar _Any scalar FieldSet "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( 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 9624e5dcdac..bdf769022aa 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@requiresScopes", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@requiresScopes", "@tag", "FieldSet"] + ) { query: Query } @@ -28,7 +31,9 @@ scalar _Any scalar FieldSet "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( 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 9624e5dcdac..bdf769022aa 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@requiresScopes", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@requiresScopes", "@tag", "FieldSet"] + ) { query: Query } @@ -28,7 +31,9 @@ scalar _Any scalar FieldSet "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( 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 c0ff123c24d..6bd26b431d9 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@requiresScopes", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@requiresScopes", "@tag", "FieldSet"] + ) { query: Query } @@ -31,7 +34,9 @@ scalar _Any scalar FieldSet "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( diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/ServiceTypeTests.cs b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/ServiceTypeTests.cs index e4e48b834ce..014016b5169 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/ServiceTypeTests.cs +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/ServiceTypeTests.cs @@ -33,7 +33,10 @@ public async Task TestServiceTypeEmptyQueryTypePureCodeFirst() .MatchInlineSnapshot( """ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@key", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@key", "@tag", "FieldSet"] + ) { query: Query } @@ -61,7 +64,9 @@ scalar _Any scalar FieldSet "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( @@ -95,7 +100,10 @@ public async Task TestServiceTypeTypePureCodeFirst() .MatchInlineSnapshot( """ schema - @link(url: "https://specs.apollo.dev/federation/v2.2", import: ["@key", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.2" + import: ["@key", "@tag", "FieldSet"] + ) { query: Query } @@ -124,7 +132,9 @@ scalar _Any scalar FieldSet "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( 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 881e3a613b3..fa5c82c833b 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@shareable", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@shareable", "@tag", "FieldSet"] + ) { query: Query } 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 881e3a613b3..fa5c82c833b 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,5 +1,8 @@ schema - @link(url: "https://specs.apollo.dev/federation/v2.6", import: ["@shareable", "@tag", "FieldSet"]) { + @link( + url: "https://specs.apollo.dev/federation/v2.6" + import: ["@shareable", "@tag", "FieldSet"] + ) { query: Query } diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.CommandLine.Tests/__snapshots__/SchemaExportCommandTests.App_Should_WriteSemanticNonNullSchemaToFile_When_SemanticNonNullOptionIsSpecified.md b/src/HotChocolate/AspNetCore/test/AspNetCore.CommandLine.Tests/__snapshots__/SchemaExportCommandTests.App_Should_WriteSemanticNonNullSchemaToFile_When_SemanticNonNullOptionIsSpecified.md index c4059f312ea..703798decb3 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.CommandLine.Tests/__snapshots__/SchemaExportCommandTests.App_Should_WriteSemanticNonNullSchemaToFile_When_SemanticNonNullOptionIsSpecified.md +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.CommandLine.Tests/__snapshots__/SchemaExportCommandTests.App_Should_WriteSemanticNonNullSchemaToFile_When_SemanticNonNullOptionIsSpecified.md @@ -11,9 +11,7 @@ type Query { foo: String @semanticNonNull } -directive @semanticNonNull(levels: [Int!] = [ - 0 -]) on FIELD_DEFINITION +directive @semanticNonNull(levels: [Int!] = [0]) on 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 fbf9e68d3d1..005c3565890 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 @@ -45,7 +45,13 @@ type Droid implements Character { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") height(unit: Unit): Float primaryFunction: String @@ -84,7 +90,13 @@ type Human implements Character { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") otherHuman: Human height(unit: Unit): Float @@ -162,7 +174,13 @@ scalar Long 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 +) 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( 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 14f862294ec..f9f67b8a72e 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 @@ -45,7 +45,13 @@ type Droid implements Character { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") height(unit: Unit): Float primaryFunction: String @@ -84,7 +90,13 @@ type Human implements Character { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") otherHuman: Human height(unit: Unit): Float @@ -162,7 +174,13 @@ scalar Long 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 +) 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( 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 14f862294ec..f9f67b8a72e 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 @@ -45,7 +45,13 @@ type Droid implements Character { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") height(unit: Unit): Float primaryFunction: String @@ -84,7 +90,13 @@ type Human implements Character { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") otherHuman: Human height(unit: Unit): Float @@ -162,7 +174,13 @@ scalar Long 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 +) 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( 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 6b3e497053c..703282f7a71 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 @@ -56,7 +56,13 @@ type Droid implements Character { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") height(unit: Unit): Float primaryFunction: String @@ -95,7 +101,13 @@ type Human implements Character { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") otherHuman: Human height(unit: Unit): Float @@ -173,7 +185,13 @@ scalar Long 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 +) 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( diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Schema_Does_Not_Include_Internal_Directives.snap b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Schema_Does_Not_Include_Internal_Directives.snap index 948557e848e..f1b51af5410 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Schema_Does_Not_Include_Internal_Directives.snap +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSchemaMiddlewareTests.Download_GraphQL_Schema_Does_Not_Include_Internal_Directives.snap @@ -11,4 +11,10 @@ type Query { 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 +) on + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | ENUM + | INPUT_FIELD_DEFINITION 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 15fc5042bfb..c8e45e4ad38 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 @@ -56,7 +56,12 @@ type Droid implements Character { "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"]) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + ) @cost(weight: "10") height(unit: Unit): Float primaryFunction: String @@ -95,7 +100,12 @@ type Human implements Character { "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"]) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + ) @cost(weight: "10") otherHuman: Human height(unit: Unit): Float @@ -173,7 +183,13 @@ scalar Long 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 +) 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( diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSemanticNonNullSchemaMiddlewareTests.Download_GraphQL_SemanticNonNull_Schema.md b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSemanticNonNullSchemaMiddlewareTests.Download_GraphQL_SemanticNonNull_Schema.md index 7d0c3ca3c4c..a73da4c2889 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSemanticNonNullSchemaMiddlewareTests.Download_GraphQL_SemanticNonNull_Schema.md +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSemanticNonNullSchemaMiddlewareTests.Download_GraphQL_SemanticNonNull_Schema.md @@ -58,7 +58,13 @@ type Droid implements Character { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") height(unit: Unit): Float primaryFunction: String @@ -97,7 +103,13 @@ type Human implements Character { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") otherHuman: Human height(unit: Unit): Float @@ -175,7 +187,13 @@ scalar Long 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 +) 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( @@ -201,9 +219,7 @@ directive @listSize( requireOneSlicingArgument: Boolean = true ) on FIELD_DEFINITION -directive @semanticNonNull(levels: [Int!] = [ - 0 -]) on FIELD_DEFINITION +directive @semanticNonNull(levels: [Int!] = [0]) on FIELD_DEFINITION "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( diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSemanticNonNullSchemaMiddlewareTests.Download_GraphQL_SemanticNonNull_Schema_Does_Not_Include_Internal_Directives.snap b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSemanticNonNullSchemaMiddlewareTests.Download_GraphQL_SemanticNonNull_Schema_Does_Not_Include_Internal_Directives.snap index 37d687096ba..65fab5e0b04 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSemanticNonNullSchemaMiddlewareTests.Download_GraphQL_SemanticNonNull_Schema_Does_Not_Include_Internal_Directives.snap +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSemanticNonNullSchemaMiddlewareTests.Download_GraphQL_SemanticNonNull_Schema_Does_Not_Include_Internal_Directives.snap @@ -11,8 +11,12 @@ type Query { 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 +) on + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | ENUM + | INPUT_FIELD_DEFINITION -directive @semanticNonNull(levels: [Int!] = [ - 0 -]) on FIELD_DEFINITION +directive @semanticNonNull(levels: [Int!] = [0]) on FIELD_DEFINITION diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSemanticNonNullSchemaMiddlewareTests.Download_GraphQL_SemanticNonNull_Schema_Explicit_Pattern.snap b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSemanticNonNullSchemaMiddlewareTests.Download_GraphQL_SemanticNonNull_Schema_Explicit_Pattern.snap index 7a67122756a..95f97dd8f02 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSemanticNonNullSchemaMiddlewareTests.Download_GraphQL_SemanticNonNull_Schema_Explicit_Pattern.snap +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetSemanticNonNullSchemaMiddlewareTests.Download_GraphQL_SemanticNonNull_Schema_Explicit_Pattern.snap @@ -47,7 +47,13 @@ type Droid implements Character { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") height(unit: Unit): Float primaryFunction: String @@ -86,7 +92,13 @@ type Human implements Character { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") otherHuman: Human height(unit: Unit): Float @@ -164,7 +176,13 @@ scalar Long 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 +) 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( @@ -188,9 +206,7 @@ directive @listSize( requireOneSlicingArgument: Boolean = true ) on FIELD_DEFINITION -directive @semanticNonNull(levels: [Int!] = [ - 0 -]) on FIELD_DEFINITION +directive @semanticNonNull(levels: [Int!] = [0]) on FIELD_DEFINITION "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( diff --git a/src/HotChocolate/Caching/test/Caching.Tests/SchemaTests.cs b/src/HotChocolate/Caching/test/Caching.Tests/SchemaTests.cs index 17bfefe9f8a..eed5ba8fbb4 100644 --- a/src/HotChocolate/Caching/test/Caching.Tests/SchemaTests.cs +++ b/src/HotChocolate/Caching/test/Caching.Tests/SchemaTests.cs @@ -71,7 +71,18 @@ interface Book { author: String! } """ - directive @tag("The name of the tag." name: String!) repeatable on SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION + directive @tag("The name of the tag." name: String!) repeatable on + | SCHEMA + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | INTERFACE + | UNION + | ENUM + | ENUM_VALUE + | INPUT_OBJECT + | INPUT_FIELD_DEFINITION """"); } 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 4b081c91e29..963a93b107f 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 @@ -28,7 +28,11 @@ type Query { queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! - @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + @cacheControl( + maxAge: 500 + sharedMaxAge: 200 + vary: ["accept-language", "x-timezoneoffset"] + ) queryableFieldWithConnectionWithCacheControl( "Returns the first _n_ elements from the list." first: Int @@ -82,7 +86,11 @@ type NestedType { queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! - @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + @cacheControl( + maxAge: 500 + sharedMaxAge: 200 + vary: ["accept-language", "x-timezoneoffset"] + ) queryableFieldWithConnectionWithCacheControl( "Returns the first _n_ elements from the list." first: Int 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 c731765b0db..ffab98142d1 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 @@ -28,7 +28,11 @@ type Query { queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! - @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + @cacheControl( + maxAge: 500 + sharedMaxAge: 200 + vary: ["accept-language", "x-timezoneoffset"] + ) queryableFieldWithConnectionWithCacheControl( "Returns the first _n_ elements from the list." first: Int @@ -82,7 +86,11 @@ type NestedType { queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! - @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + @cacheControl( + maxAge: 500 + sharedMaxAge: 200 + vary: ["accept-language", "x-timezoneoffset"] + ) queryableFieldWithConnectionWithCacheControl( "Returns the first _n_ elements from the list." first: Int 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 a1e3e62646d..eb3087b5bde 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 @@ -29,7 +29,11 @@ type Query { queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! - @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + @cacheControl( + maxAge: 500 + sharedMaxAge: 200 + vary: ["accept-language", "x-timezoneoffset"] + ) queryableFieldWithConnectionWithCacheControl( "Returns the first _n_ elements from the list." first: Int @@ -84,7 +88,11 @@ type NestedType { queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! - @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + @cacheControl( + maxAge: 500 + sharedMaxAge: 200 + vary: ["accept-language", "x-timezoneoffset"] + ) queryableFieldWithConnectionWithCacheControl( "Returns the first _n_ elements from the list." first: Int 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 41b75de68ce..86559a926ca 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 @@ -27,7 +27,11 @@ type Query { queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! - @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + @cacheControl( + maxAge: 500 + sharedMaxAge: 200 + vary: ["accept-language", "x-timezoneoffset"] + ) queryableFieldWithConnectionWithCacheControl( "Returns the first _n_ elements from the list." first: Int @@ -80,7 +84,11 @@ type NestedType { queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! - @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + @cacheControl( + maxAge: 500 + sharedMaxAge: 200 + vary: ["accept-language", "x-timezoneoffset"] + ) queryableFieldWithConnectionWithCacheControl( "Returns the first _n_ elements from the list." first: Int 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 41b75de68ce..86559a926ca 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 @@ -27,7 +27,11 @@ type Query { queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! - @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + @cacheControl( + maxAge: 500 + sharedMaxAge: 200 + vary: ["accept-language", "x-timezoneoffset"] + ) queryableFieldWithConnectionWithCacheControl( "Returns the first _n_ elements from the list." first: Int @@ -80,7 +84,11 @@ type NestedType { queryableFieldWithCacheControlMaxAgeAndSharedMaxAge: [String!]! @cacheControl(maxAge: 500, sharedMaxAge: 200) queryableFieldWithCacheControlMaxAgeAndSharedMaxAgeAndVary: [String!]! - @cacheControl(maxAge: 500, sharedMaxAge: 200, vary: ["accept-language", "x-timezoneoffset"]) + @cacheControl( + maxAge: 500 + sharedMaxAge: 200 + vary: ["accept-language", "x-timezoneoffset"] + ) queryableFieldWithConnectionWithCacheControl( "Returns the first _n_ elements from the list." first: Int 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 a0f897c9ed9..f9f29641d47 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 @@ -81,6 +81,12 @@ directive @authorize( 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 +) 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 5b59f5ae3fc..cc6ecbbdd1b 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 @@ -3,7 +3,13 @@ schema { } type Query - @authorize(roles: ["policy_tester_noupdate", "policy_tester_update_noread", "authorizationHandlerTester"]) { + @authorize( + roles: [ + "policy_tester_noupdate" + "policy_tester_update_noread" + "authorizationHandlerTester" + ] + ) { hello: String @authorize(roles: ["admin"]) @cost(weight: "10") } @@ -31,4 +37,10 @@ directive @authorize( 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 +) on + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | ENUM + | INPUT_FIELD_DEFINITION diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/VariableCoercionHelperTests.cs b/src/HotChocolate/Core/test/Execution.Tests/Processing/VariableCoercionHelperTests.cs index 37be9a71ce7..939a73a40a7 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/VariableCoercionHelperTests.cs +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/VariableCoercionHelperTests.cs @@ -382,9 +382,7 @@ public void Coerce_Empty_Input_Object_With_Optional_And_Default_Value() Assert.False(Assert.IsType(t.Value.RuntimeValue).OptionalField.HasValue); t.Value.ValueLiteral.MatchInlineSnapshot( """ - { - field: true - } + { field: true } """); }); } @@ -609,9 +607,7 @@ public void Single_Value_Can_Be_Coerced_Into_List_Variable() entry.Value.ValueLiteral.MatchInlineSnapshot( """ - [ - "xyz" - ] + ["xyz"] """); } @@ -667,11 +663,7 @@ enum TestEnum { Assert.Equal("abc", entry.Key); entry.Value.ValueLiteral.MatchInlineSnapshot( """ - [ - { - enum: Foo - } - ] + [{ enum: Foo }] """); } @@ -730,14 +722,7 @@ enum TestEnum { Assert.Equal("abc", entry.Key); entry.Value.ValueLiteral.MatchInlineSnapshot( """ - [ - { - enum: Foo - }, - { - enum: Bar - } - ] + [{ enum: Foo }, { enum: Bar }] """); } @@ -796,14 +781,7 @@ enum TestEnum { Assert.Equal("abc", entry.Key); entry.Value.ValueLiteral.MatchInlineSnapshot( """ - [ - { - enum: Foo - }, - { - enum: Bar - } - ] + [{ enum: Foo }, { enum: Bar }] """); } @@ -860,10 +838,7 @@ enum TestEnum { Assert.Equal("abc", entry.Key); entry.Value.ValueLiteral.MatchInlineSnapshot( """ - { - enum: Foo, - enum2: Bar - } + { enum: Foo, enum2: Bar } """); } @@ -920,10 +895,7 @@ enum TestEnum { Assert.Equal("abc", entry.Key); entry.Value.ValueLiteral.MatchInlineSnapshot( """ - { - enum: Foo, - enum2: Bar - } + { enum: Foo, enum2: Bar } """); } @@ -980,10 +952,7 @@ enum TestEnum { Assert.Equal("abc", entry.Key); entry.Value.ValueLiteral.MatchInlineSnapshot( """ - { - value_a: "Foo", - value_b: Bar - } + { value_a: "Foo", value_b: Bar } """); } @@ -1052,14 +1021,7 @@ enum TestEnum { Assert.Equal("abc", entry.Key); entry.Value.ValueLiteral.MatchInlineSnapshot( """ - [ - { - value_a: "Foo" - }, - { - value_b: Bar - } - ] + [{ value_a: "Foo" }, { value_b: Bar }] """); } 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 54629201b28..a06828e251c 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 @@ -3,7 +3,7 @@ query Crypto { price { lastPrice } - ... PriceInfo @include(if: false) + ...PriceInfo @include(if: false) } } 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 1bb13e75f48..9a90bfe0643 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,10 +1,10 @@ query ViewerContainerQuery($symbol: String!) { assetBySymbol(symbol: $symbol) { - ... ViewerHeaderFragment_asset - ... ViewerSnapshotFragment_asset - ... ViewerStatsFragment_asset - ... ViewerOverviewFragment_asset - ... ViewerResourcesFragment_asset + ...ViewerHeaderFragment_asset + ...ViewerSnapshotFragment_asset + ...ViewerStatsFragment_asset + ...ViewerOverviewFragment_asset + ...ViewerResourcesFragment_asset id } } @@ -31,7 +31,7 @@ fragment ViewerSnapshotFragment_asset on Asset { symbol color price { - ... ViewerSnapshotFragment_price + ...ViewerSnapshotFragment_price id } } 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 ca4e22d070d..a777abd12e2 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 @@ -3,7 +3,7 @@ query Crypto { price @include(if: false) { lastPrice } - ... PriceInfo + ...PriceInfo } } 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 1c71d299bad..af52a9555f7 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 @@ -3,7 +3,7 @@ query Crypto { price { lastPrice } - ... PriceInfo @include(if: false) + ...PriceInfo @include(if: false) } } 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 0e4dbea2487..2bece3bcef6 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,7 @@ query DashboardContainerQuery { - ... DashboardTickerFragment_query - ... DashboardFeaturedFragment_query - ... DashboardSpotlightFragment_query + ...DashboardTickerFragment_query + ...DashboardFeaturedFragment_query + ...DashboardSpotlightFragment_query @defer(label: "DashboardContainerQuery$defer$spotlight") } @@ -29,7 +29,7 @@ fragment DashboardFeaturedFragment_query on Query { featured: assets(where: { symbol: { in: ["BTC", "ADA", "ALGO"] } }) { nodes { id - ... DashboardFeaturedCardFragment_asset + ...DashboardFeaturedCardFragment_asset } } } @@ -37,13 +37,13 @@ fragment DashboardFeaturedFragment_query on Query { fragment DashboardSpotlightCardFragment_asset on AssetsConnection { nodes { id - ... DashboardSpotlightItemFragment_asset + ...DashboardSpotlightItemFragment_asset } } fragment DashboardSpotlightFragment_query on Query { - ... DashboardSpotlightGainersFragment_query - ... DashboardSpotlightLosersFragment_query + ...DashboardSpotlightGainersFragment_query + ...DashboardSpotlightLosersFragment_query } fragment DashboardSpotlightGainersFragment_query on Query { @@ -52,7 +52,7 @@ fragment DashboardSpotlightGainersFragment_query on Query { where: { price: { change24Hour: { gt: 0 } } } order: { price: { change24Hour: DESC } } ) { - ... DashboardSpotlightCardFragment_asset + ...DashboardSpotlightCardFragment_asset @defer(label: "DashboardSpotlightGainersFragment_query$defer$gainers") } } @@ -77,7 +77,7 @@ fragment DashboardSpotlightLosersFragment_query on Query { where: { price: { change24Hour: { lt: 0 } } } order: { price: { change24Hour: ASC } } ) { - ... DashboardSpotlightCardFragment_asset + ...DashboardSpotlightCardFragment_asset @defer(label: "DashboardSpotlightLosersFragment_query$defer$losers") } } @@ -86,7 +86,7 @@ fragment DashboardTickerFragment_query on Query { ticker: assets(first: 10, order: { price: { tradableMarketCapRank: ASC } }) { nodes { symbol - ... DashboardTickerItemFragment_asset + ...DashboardTickerItemFragment_asset id } } @@ -146,7 +146,11 @@ query DashboardContainerQuery { history @__execute(id: 32, kind: DEFAULT, type: COMPOSITE) { ... on HistoryConnection { nodes - @__execute(id: 35, kind: DEFAULT, type: COMPOSITE_LIST) { + @__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) @@ -171,7 +175,12 @@ query DashboardContainerQuery { ) @__execute(id: 4, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on AssetsConnection { nodes - @__execute(id: 40, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { + @__execute( + id: 40 + kind: DEFAULT + type: COMPOSITE_LIST + isDeferred: true + ) { ... on Asset { id @__execute(id: 42, kind: DEFAULT, type: LEAF, isDeferred: true) symbol @@ -182,16 +191,41 @@ query DashboardContainerQuery { isInWatchlist @__execute(id: 46, kind: DEFAULT, type: LEAF, isDeferred: true) price - @__execute(id: 47, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + @__execute( + id: 47 + kind: DEFAULT + type: COMPOSITE + isDeferred: true + ) { ... on AssetPrice { currency - @__execute(id: 49, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 49 + kind: DEFAULT + type: LEAF + isDeferred: true + ) lastPrice - @__execute(id: 50, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 50 + kind: DEFAULT + type: LEAF + isDeferred: true + ) change24Hour - @__execute(id: 51, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 51 + kind: DEFAULT + type: LEAF + isDeferred: true + ) id - @__execute(id: 52, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 52 + kind: DEFAULT + type: LEAF + isDeferred: true + ) } } } @@ -205,7 +239,12 @@ query DashboardContainerQuery { ) @__execute(id: 5, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on AssetsConnection { nodes - @__execute(id: 54, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { + @__execute( + id: 54 + kind: DEFAULT + type: COMPOSITE_LIST + isDeferred: true + ) { ... on Asset { id @__execute(id: 56, kind: DEFAULT, type: LEAF, isDeferred: true) symbol @@ -216,16 +255,41 @@ query DashboardContainerQuery { isInWatchlist @__execute(id: 60, kind: DEFAULT, type: LEAF, isDeferred: true) price - @__execute(id: 61, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + @__execute( + id: 61 + kind: DEFAULT + type: COMPOSITE + isDeferred: true + ) { ... on AssetPrice { currency - @__execute(id: 63, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 63 + kind: DEFAULT + type: LEAF + isDeferred: true + ) lastPrice - @__execute(id: 64, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 64 + kind: DEFAULT + type: LEAF + isDeferred: true + ) change24Hour - @__execute(id: 65, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 65 + kind: DEFAULT + type: LEAF + isDeferred: true + ) id - @__execute(id: 66, kind: DEFAULT, type: LEAF, isDeferred: true) + @__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 0f50d9edbb4..fcb867790ea 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 @@ -39,10 +39,20 @@ } } e - @__execute(id: 8, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + @__execute( + id: 8 + kind: DEFAULT + type: COMPOSITE + isDeferred: true + ) { ... on E { f - @__execute(id: 12, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 12 + kind: DEFAULT + type: LEAF + isDeferred: true + ) } } } diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Fragment_Spread.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Fragment_Spread.snap index 0f170598cdc..24e468f0866 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Fragment_Spread.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Fragment_Spread.snap @@ -1,7 +1,7 @@ { hero(episode: EMPIRE) { name - ... Foo @defer + ...Foo @defer } } diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Fragment_Spread_Deferred_And_Non_Deferred.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Fragment_Spread_Deferred_And_Non_Deferred.snap index a0d1cc72cd5..9ccb8a9571f 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Fragment_Spread_Deferred_And_Non_Deferred.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Fragment_Spread_Deferred_And_Non_Deferred.snap @@ -1,7 +1,7 @@ { hero(episode: EMPIRE) { - ... CharFields @defer(label: "DeferCharFields") - ... CharFields + ...CharFields @defer(label: "DeferCharFields") + ...CharFields } } diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Fragment_Spread_Non_Deferred_Then_Deferred.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Fragment_Spread_Non_Deferred_Then_Deferred.snap index 8e3eeba6e7a..a90393cb76d 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Fragment_Spread_Non_Deferred_Then_Deferred.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Fragment_Spread_Non_Deferred_Then_Deferred.snap @@ -1,7 +1,7 @@ { hero(episode: EMPIRE) { - ... CharFields - ... CharFields @defer(label: "DeferCharFields") + ...CharFields + ...CharFields @defer(label: "DeferCharFields") } } 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 bb867ea1ea7..53d01a4cdd6 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 @@ -43,9 +43,19 @@ bar @__execute(id: 9, kind: DEFAULT, type: LEAF, isDeferred: true) baz - @__execute(id: 10, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 10 + kind: DEFAULT + type: LEAF + isDeferred: true + ) bak - @__execute(id: 11, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 11 + kind: DEFAULT + type: LEAF + isDeferred: true + ) } } } diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Multiple_Nested_Same_Fragment.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Multiple_Nested_Same_Fragment.snap index ed6e98d752b..36ccdfc6948 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Multiple_Nested_Same_Fragment.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Multiple_Nested_Same_Fragment.snap @@ -1,11 +1,11 @@ { hero(episode: EMPIRE) { ... @defer { - ... CharFields + ...CharFields ... @defer { - ... CharFields + ...CharFields ... @defer { - ... CharFields + ...CharFields } } } 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 00a7518ba55..b17372e299c 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 @@ -24,7 +24,12 @@ @__execute(id: 4, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on NestedObject { deeperObject - @__execute(id: 6, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + @__execute( + id: 6 + kind: DEFAULT + type: COMPOSITE + isDeferred: true + ) { ... on DeeperObject { foo @__execute(id: 8, 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 7c0d84d64f5..058c3f71085 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 @@ -1,8 +1,8 @@ { stage { - ... FragmentA @defer(label: "a") - ... FragmentB @defer(label: "b") - ... FragmentC @defer(label: "c") + ...FragmentA @defer(label: "a") + ...FragmentB @defer(label: "b") + ...FragmentC @defer(label: "c") id } } @@ -94,25 +94,60 @@ fragment FragmentC on Stage { @__execute(id: 4, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { ... on Metrics { operations - @__execute(id: 9, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + @__execute( + id: 9 + kind: DEFAULT + type: COMPOSITE + isDeferred: true + ) { ... on OperationMetrics { summary - @__execute(id: 13, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + @__execute( + id: 13 + kind: DEFAULT + type: COMPOSITE + isDeferred: true + ) { ... on OperationSummary { latency - @__execute(id: 15, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + @__execute( + id: 15 + kind: DEFAULT + type: COMPOSITE + isDeferred: true + ) { ... on Latency { mean - @__execute(id: 18, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 18 + kind: DEFAULT + type: LEAF + isDeferred: true + ) } } throughput - @__execute(id: 16, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + @__execute( + id: 16 + kind: DEFAULT + type: COMPOSITE + isDeferred: true + ) { ... on Throughput { opm - @__execute(id: 20, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 20 + kind: DEFAULT + type: LEAF + isDeferred: true + ) errorRate - @__execute(id: 21, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 21 + kind: DEFAULT + type: LEAF + isDeferred: true + ) } } } @@ -120,21 +155,51 @@ fragment FragmentC on Stage { } } clients - @__execute(id: 10, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + @__execute( + id: 10 + kind: DEFAULT + type: COMPOSITE + isDeferred: true + ) { ... on ClientMetrics { insights - @__execute(id: 23, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + @__execute( + id: 23 + kind: DEFAULT + type: COMPOSITE + isDeferred: true + ) { ... on ClientInsightsConnection { edges - @__execute(id: 25, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { + @__execute( + id: 25 + kind: DEFAULT + type: COMPOSITE_LIST + isDeferred: true + ) { ... on ClientInsightsEdge { node - @__execute(id: 27, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + @__execute( + id: 27 + kind: DEFAULT + type: COMPOSITE + isDeferred: true + ) { ... on ClientInsight { id - @__execute(id: 29, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 29 + kind: DEFAULT + type: LEAF + isDeferred: true + ) name - @__execute(id: 30, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 30 + kind: DEFAULT + type: LEAF + isDeferred: true + ) } } } @@ -144,49 +209,129 @@ fragment FragmentC on Stage { } } subgraphs - @__execute(id: 11, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + @__execute( + id: 11 + kind: DEFAULT + type: COMPOSITE + isDeferred: true + ) { ... on SubgraphMetrics { insights - @__execute(id: 32, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + @__execute( + id: 32 + kind: DEFAULT + type: COMPOSITE + isDeferred: true + ) { ... on SubgraphInsightsConnection { edges - @__execute(id: 34, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { + @__execute( + id: 34 + kind: DEFAULT + type: COMPOSITE_LIST + isDeferred: true + ) { ... on SubgraphInsightsEdge { node - @__execute(id: 37, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + @__execute( + id: 37 + kind: DEFAULT + type: COMPOSITE + isDeferred: true + ) { ... on SubgraphInsight { id - @__execute(id: 40, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 40 + kind: DEFAULT + type: LEAF + isDeferred: true + ) name - @__execute(id: 41, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 41 + kind: DEFAULT + type: LEAF + isDeferred: true + ) impact - @__execute(id: 42, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 42 + kind: DEFAULT + type: LEAF + isDeferred: true + ) latency - @__execute(id: 43, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + @__execute( + id: 43 + kind: DEFAULT + type: COMPOSITE + isDeferred: true + ) { ... on LatencyDataset { dataset - @__execute(id: 46, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { + @__execute( + id: 46 + kind: DEFAULT + type: COMPOSITE_LIST + isDeferred: true + ) { ... on LatencyDataPoint { epoch - @__execute(id: 48, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 48 + kind: DEFAULT + type: LEAF + isDeferred: true + ) mean - @__execute(id: 49, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 49 + kind: DEFAULT + type: LEAF + isDeferred: true + ) } } } } throughput - @__execute(id: 44, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + @__execute( + id: 44 + kind: DEFAULT + type: COMPOSITE + isDeferred: true + ) { ... on ThroughputDataset { dataset - @__execute(id: 51, kind: DEFAULT, type: COMPOSITE_LIST, isDeferred: true) { + @__execute( + id: 51 + kind: DEFAULT + type: COMPOSITE_LIST + isDeferred: true + ) { ... on ThroughputDataPoint { epoch - @__execute(id: 53, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 53 + kind: DEFAULT + type: LEAF + isDeferred: true + ) opm - @__execute(id: 54, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 54 + kind: DEFAULT + type: LEAF + isDeferred: true + ) errorRate - @__execute(id: 55, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 55 + kind: DEFAULT + type: LEAF + isDeferred: true + ) } } } @@ -194,16 +339,36 @@ fragment FragmentC on Stage { } } cursor - @__execute(id: 38, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 38 + kind: DEFAULT + type: LEAF + isDeferred: true + ) } } pageInfo - @__execute(id: 35, kind: DEFAULT, type: COMPOSITE, isDeferred: true) { + @__execute( + id: 35 + kind: DEFAULT + type: COMPOSITE + isDeferred: true + ) { ... on PageInfo { endCursor - @__execute(id: 57, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 57 + kind: DEFAULT + type: LEAF + isDeferred: true + ) hasNextPage - @__execute(id: 58, kind: DEFAULT, type: LEAF, isDeferred: true) + @__execute( + id: 58 + kind: DEFAULT + type: LEAF + isDeferred: true + ) } } } 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 d5571ce2fc1..40a4ec6e47c 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,7 +1,7 @@ query foo($v: Boolean!) { hero(episode: EMPIRE) { name - ... abc @include(if: $v) + ...abc @include(if: $v) } } 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 b67c2b6636c..33b4191ff12 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,7 +1,7 @@ query foo($v: Boolean!) { hero(episode: EMPIRE) { name @include(if: $v) - ... abc + ...abc } } 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 cb385aef4a4..18f00c16fd8 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,7 @@ query foo($v: Boolean!, $q: Boolean!) { hero(episode: EMPIRE) { name @include(if: $v) - ... abc @include(if: $q) + ...abc @include(if: $q) } } 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 81ce1a482f2..026d362bd7c 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,7 +1,7 @@ query foo($v: Boolean!) { hero(episode: EMPIRE) { name @include(if: $v) - ... abc + ...abc } } 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 6d27f3f0ad7..791313a7c3b 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,7 +1,7 @@ query foo($v: Boolean) { hero(episode: EMPIRE) { name @include(if: $v) - ... abc + ...abc } } 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 577fc4d637b..0624affa60c 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 @@ -1,16 +1,16 @@ query getHero { a: hero(episode: NEW_HOPE) { - ... Hero + ...Hero } b: hero(episode: EMPIRE) { - ... Hero + ...Hero } c: hero(episode: JEDI) { - ... Hero + ...Hero } search(text: "") { __typename - ... Hero + ...Hero ... on Starship { shipId: id length @@ -28,13 +28,13 @@ query getHero { name } types { - ... FullType + ...FullType } directives { name description args { - ... InputValue + ...InputValue } onOperation onFragment @@ -45,27 +45,27 @@ query getHero { fragment Hero on Character { id - ... Human - ... Droid + ...Human + ...Droid appearsIn height } fragment Human on Human { - ... HasName - ... HasFriends + ...HasName + ...HasFriends height } fragment Droid on Droid { - ... HasName - ... HasFriends + ...HasName + ...HasFriends height } fragment Friend on FriendsConnection { nodes { - ... HasName + ...HasName friends { nodes { friends { @@ -93,7 +93,7 @@ fragment HasName on Character { fragment HasFriends on Character { friends { - ... Friend + ...Friend } } @@ -105,19 +105,19 @@ fragment FullType on __Type { name description args { - ... InputValue + ...InputValue } type { - ... TypeRef + ...TypeRef } isDeprecated deprecationReason } inputFields { - ... InputValue + ...InputValue } interfaces { - ... TypeRef + ...TypeRef } enumValues(includeDeprecated: true) { name @@ -126,7 +126,7 @@ fragment FullType on __Type { deprecationReason } possibleTypes { - ... TypeRef + ...TypeRef } } @@ -134,7 +134,7 @@ fragment InputValue on __InputValue { name description type { - ... TypeRef + ...TypeRef } defaultValue } @@ -177,12 +177,20 @@ query getHero { @__execute(id: 21, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 23, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 27 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 28, kind: PURE, type: LEAF) homePlanet @@ -192,7 +200,11 @@ query getHero { 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) + @__execute( + id: 33 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 34, kind: PURE, type: LEAF) primaryFunction @@ -207,12 +219,20 @@ query getHero { @__execute(id: 37, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 39, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 43 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 44, kind: PURE, type: LEAF) homePlanet @@ -222,7 +242,11 @@ query getHero { 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) + @__execute( + id: 49 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 50, kind: PURE, type: LEAF) primaryFunction @@ -246,12 +270,20 @@ query getHero { @__execute(id: 58, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 60, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 64 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 65, kind: PURE, type: LEAF) homePlanet @@ -261,7 +293,11 @@ query getHero { 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) + @__execute( + id: 70 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 71, kind: PURE, type: LEAF) primaryFunction @@ -276,12 +312,20 @@ query getHero { @__execute(id: 74, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 76, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 80 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 81, kind: PURE, type: LEAF) homePlanet @@ -291,7 +335,11 @@ query getHero { 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) + @__execute( + id: 86 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 87, kind: PURE, type: LEAF) primaryFunction @@ -327,12 +375,20 @@ query getHero { @__execute(id: 103, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 105, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 109 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 110, kind: PURE, type: LEAF) homePlanet @@ -342,7 +398,11 @@ query getHero { 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) + @__execute( + id: 115 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 116, kind: PURE, type: LEAF) primaryFunction @@ -357,12 +417,20 @@ query getHero { @__execute(id: 119, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 121, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 125 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 126, kind: PURE, type: LEAF) homePlanet @@ -372,7 +440,11 @@ query getHero { 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) + @__execute( + id: 131 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 132, kind: PURE, type: LEAF) primaryFunction @@ -396,12 +468,20 @@ query getHero { @__execute(id: 140, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 142, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 146 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 147, kind: PURE, type: LEAF) homePlanet @@ -411,7 +491,11 @@ query getHero { 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) + @__execute( + id: 152 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 153, kind: PURE, type: LEAF) primaryFunction @@ -426,12 +510,20 @@ query getHero { @__execute(id: 156, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 158, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 162 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 163, kind: PURE, type: LEAF) homePlanet @@ -441,7 +533,11 @@ query getHero { 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) + @__execute( + id: 168 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 169, kind: PURE, type: LEAF) primaryFunction @@ -479,12 +575,20 @@ query getHero { @__execute(id: 185, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 187, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 191 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 192, kind: PURE, type: LEAF) homePlanet @@ -494,7 +598,11 @@ query getHero { 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) + @__execute( + id: 197 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 198, kind: PURE, type: LEAF) primaryFunction @@ -509,12 +617,20 @@ query getHero { @__execute(id: 201, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 203, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 207 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 208, kind: PURE, type: LEAF) homePlanet @@ -524,7 +640,11 @@ query getHero { 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) + @__execute( + id: 213 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 214, kind: PURE, type: LEAF) primaryFunction @@ -548,12 +668,20 @@ query getHero { @__execute(id: 222, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 224, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 228 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 229, kind: PURE, type: LEAF) homePlanet @@ -563,7 +691,11 @@ query getHero { 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) + @__execute( + id: 234 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 235, kind: PURE, type: LEAF) primaryFunction @@ -578,12 +710,20 @@ query getHero { @__execute(id: 238, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 240, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 244 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 245, kind: PURE, type: LEAF) homePlanet @@ -593,7 +733,11 @@ query getHero { 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) + @__execute( + id: 250 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 251, kind: PURE, type: LEAF) primaryFunction @@ -629,12 +773,20 @@ query getHero { @__execute(id: 267, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 269, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 273 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 274, kind: PURE, type: LEAF) homePlanet @@ -644,7 +796,11 @@ query getHero { 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) + @__execute( + id: 279 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 280, kind: PURE, type: LEAF) primaryFunction @@ -659,12 +815,20 @@ query getHero { @__execute(id: 283, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 285, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 289 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 290, kind: PURE, type: LEAF) homePlanet @@ -674,7 +838,11 @@ query getHero { 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) + @__execute( + id: 295 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 296, kind: PURE, type: LEAF) primaryFunction @@ -698,12 +866,20 @@ query getHero { @__execute(id: 304, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 306, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 310 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 311, kind: PURE, type: LEAF) homePlanet @@ -713,7 +889,11 @@ query getHero { 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) + @__execute( + id: 316 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 317, kind: PURE, type: LEAF) primaryFunction @@ -728,12 +908,20 @@ query getHero { @__execute(id: 320, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 322, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 326 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 327, kind: PURE, type: LEAF) homePlanet @@ -743,7 +931,11 @@ query getHero { 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) + @__execute( + id: 332 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 333, kind: PURE, type: LEAF) primaryFunction @@ -781,12 +973,20 @@ query getHero { @__execute(id: 349, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 351, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 355 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 356, kind: PURE, type: LEAF) homePlanet @@ -796,7 +996,11 @@ query getHero { 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) + @__execute( + id: 361 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 362, kind: PURE, type: LEAF) primaryFunction @@ -811,12 +1015,20 @@ query getHero { @__execute(id: 365, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 367, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 371 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 372, kind: PURE, type: LEAF) homePlanet @@ -826,7 +1038,11 @@ query getHero { 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) + @__execute( + id: 377 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 378, kind: PURE, type: LEAF) primaryFunction @@ -850,12 +1066,20 @@ query getHero { @__execute(id: 386, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 388, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 392 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 393, kind: PURE, type: LEAF) homePlanet @@ -865,7 +1089,11 @@ query getHero { 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) + @__execute( + id: 398 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 399, kind: PURE, type: LEAF) primaryFunction @@ -880,12 +1108,20 @@ query getHero { @__execute(id: 402, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 404, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 408 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 409, kind: PURE, type: LEAF) homePlanet @@ -895,7 +1131,11 @@ query getHero { 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) + @__execute( + id: 414 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 415, kind: PURE, type: LEAF) primaryFunction @@ -931,12 +1171,20 @@ query getHero { @__execute(id: 431, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 433, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 437 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 438, kind: PURE, type: LEAF) homePlanet @@ -946,7 +1194,11 @@ query getHero { 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) + @__execute( + id: 443 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 444, kind: PURE, type: LEAF) primaryFunction @@ -961,12 +1213,20 @@ query getHero { @__execute(id: 447, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 449, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 453 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 454, kind: PURE, type: LEAF) homePlanet @@ -976,7 +1236,11 @@ query getHero { 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) + @__execute( + id: 459 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 460, kind: PURE, type: LEAF) primaryFunction @@ -1000,12 +1264,20 @@ query getHero { @__execute(id: 468, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 470, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 474 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 475, kind: PURE, type: LEAF) homePlanet @@ -1015,7 +1287,11 @@ query getHero { 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) + @__execute( + id: 480 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 481, kind: PURE, type: LEAF) primaryFunction @@ -1030,12 +1306,20 @@ query getHero { @__execute(id: 484, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 486, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 490 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 491, kind: PURE, type: LEAF) homePlanet @@ -1045,7 +1329,11 @@ query getHero { 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) + @__execute( + id: 496 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 497, kind: PURE, type: LEAF) primaryFunction @@ -1090,12 +1378,20 @@ query getHero { @__execute(id: 519, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 521, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 525 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 526, kind: PURE, type: LEAF) homePlanet @@ -1105,7 +1401,11 @@ query getHero { 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) + @__execute( + id: 531 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 532, kind: PURE, type: LEAF) primaryFunction @@ -1120,12 +1420,20 @@ query getHero { @__execute(id: 535, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 537, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 541 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 542, kind: PURE, type: LEAF) homePlanet @@ -1135,7 +1443,11 @@ query getHero { 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) + @__execute( + id: 547 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 548, kind: PURE, type: LEAF) primaryFunction @@ -1159,12 +1471,20 @@ query getHero { @__execute(id: 556, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 558, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 562 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 563, kind: PURE, type: LEAF) homePlanet @@ -1174,7 +1494,11 @@ query getHero { 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) + @__execute( + id: 568 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 569, kind: PURE, type: LEAF) primaryFunction @@ -1189,12 +1513,20 @@ query getHero { @__execute(id: 572, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 574, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 578 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 579, kind: PURE, type: LEAF) homePlanet @@ -1204,7 +1536,11 @@ query getHero { 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) + @__execute( + id: 584 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 585, kind: PURE, type: LEAF) primaryFunction @@ -1241,12 +1577,20 @@ query getHero { @__execute(id: 602, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 604, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 608 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 609, kind: PURE, type: LEAF) homePlanet @@ -1256,7 +1600,11 @@ query getHero { 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) + @__execute( + id: 614 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 615, kind: PURE, type: LEAF) primaryFunction @@ -1271,12 +1619,20 @@ query getHero { @__execute(id: 618, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 620, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 624 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 625, kind: PURE, type: LEAF) homePlanet @@ -1286,7 +1642,11 @@ query getHero { 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) + @__execute( + id: 630 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 631, kind: PURE, type: LEAF) primaryFunction @@ -1310,12 +1670,20 @@ query getHero { @__execute(id: 639, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 641, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 645 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 646, kind: PURE, type: LEAF) homePlanet @@ -1325,7 +1693,11 @@ query getHero { 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) + @__execute( + id: 651 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 652, kind: PURE, type: LEAF) primaryFunction @@ -1340,12 +1712,20 @@ query getHero { @__execute(id: 655, kind: DEFAULT, type: COMPOSITE) { ... on FriendsConnection { nodes - @__execute(id: 657, kind: PURE, type: COMPOSITE_LIST) { + @__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) + @__execute( + id: 661 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 662, kind: PURE, type: LEAF) homePlanet @@ -1355,7 +1735,11 @@ query getHero { 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) + @__execute( + id: 667 + kind: PURE + type: LEAF_LIST + ) height @__execute(id: 668, kind: PURE, type: LEAF) primaryFunction @@ -1421,12 +1805,24 @@ query getHero { kind @__execute(id: 712, kind: PURE, type: LEAF) name @__execute(id: 713, kind: PURE, type: LEAF) ofType - @__execute(id: 714, kind: PURE, type: COMPOSITE) { + @__execute( + id: 714 + kind: PURE + type: COMPOSITE + ) { ... on __Type { kind - @__execute(id: 716, kind: PURE, type: LEAF) + @__execute( + id: 716 + kind: PURE + type: LEAF + ) name - @__execute(id: 717, kind: PURE, type: LEAF) + @__execute( + id: 717 + 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 0a63ab08e31..19785b4bf01 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,14 +1,14 @@ query($if: Boolean!) { human(id: "1000") { - ... Human1 @include(if: $if) - ... Human2 @skip(if: $if) + ...Human1 @include(if: $if) + ...Human2 @skip(if: $if) } } fragment Human1 on Human { friends { edges { - ... FriendEdge1 + ...FriendEdge1 } } } @@ -19,7 +19,7 @@ fragment FriendEdge1 on FriendsEdge { friends { nodes { __typename - ... Human3 + ...Human3 } } } @@ -30,7 +30,7 @@ fragment Human2 on Human { edges { node { __typename - ... Human3 + ...Human3 } } } 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 0a63ab08e31..19785b4bf01 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,14 +1,14 @@ query($if: Boolean!) { human(id: "1000") { - ... Human1 @include(if: $if) - ... Human2 @skip(if: $if) + ...Human1 @include(if: $if) + ...Human2 @skip(if: $if) } } fragment Human1 on Human { friends { edges { - ... FriendEdge1 + ...FriendEdge1 } } } @@ -19,7 +19,7 @@ fragment FriendEdge1 on FriendsEdge { friends { nodes { __typename - ... Human3 + ...Human3 } } } @@ -30,7 +30,7 @@ fragment Human2 on Human { edges { node { __typename - ... Human3 + ...Human3 } } } diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Prepare_Fragment_Definition.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Prepare_Fragment_Definition.snap index 3c4d66ffbf7..d53f68287c7 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Prepare_Fragment_Definition.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Prepare_Fragment_Definition.snap @@ -1,8 +1,8 @@ { hero(episode: EMPIRE) { name - ... abc - ... def + ...abc + ...def } } diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Resolve_Concrete_Types_From_Unions.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Resolve_Concrete_Types_From_Unions.snap index f7936f1155c..b67ccd6ace3 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Resolve_Concrete_Types_From_Unions.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Resolve_Concrete_Types_From_Unions.snap @@ -1,7 +1,7 @@ query QueryName { oneOrTwo { - ... TypeOneParts - ... TypeTwoParts + ...TypeOneParts + ...TypeTwoParts } } diff --git a/src/HotChocolate/Core/test/Types.Abstractions.Tests/Serialization/SemanticNonNullSchemaRewriterTests.cs b/src/HotChocolate/Core/test/Types.Abstractions.Tests/Serialization/SemanticNonNullSchemaRewriterTests.cs index b0aede153d6..6e084f52f68 100644 --- a/src/HotChocolate/Core/test/Types.Abstractions.Tests/Serialization/SemanticNonNullSchemaRewriterTests.cs +++ b/src/HotChocolate/Core/test/Types.Abstractions.Tests/Serialization/SemanticNonNullSchemaRewriterTests.cs @@ -56,9 +56,7 @@ type Query { name: String @semanticNonNull } - directive @semanticNonNull(levels: [Int!] = [ - 0 - ]) on FIELD_DEFINITION + directive @semanticNonNull(levels: [Int!] = [0]) on FIELD_DEFINITION """); } @@ -87,9 +85,7 @@ type Query { innerOnly: [[String]] @semanticNonNull(levels: [2]) } - directive @semanticNonNull(levels: [Int!] = [ - 0 - ]) on FIELD_DEFINITION + directive @semanticNonNull(levels: [Int!] = [0]) on FIELD_DEFINITION """); } @@ -132,9 +128,7 @@ type MyMutation { doStuff: String! } - directive @semanticNonNull(levels: [Int!] = [ - 0 - ]) on FIELD_DEFINITION + directive @semanticNonNull(levels: [Int!] = [0]) on FIELD_DEFINITION """); } @@ -167,9 +161,7 @@ type Mutation { doStuff: String! } - directive @semanticNonNull(levels: [Int!] = [ - 0 - ]) on FIELD_DEFINITION + directive @semanticNonNull(levels: [Int!] = [0]) on FIELD_DEFINITION """); } @@ -210,9 +202,7 @@ type CollectionSegmentInfo { hasNextPage: Boolean! } - directive @semanticNonNull(levels: [Int!] = [ - 0 - ]) on FIELD_DEFINITION + directive @semanticNonNull(levels: [Int!] = [0]) on FIELD_DEFINITION """); } @@ -265,9 +255,7 @@ interface HasName { name: String @semanticNonNull } - directive @semanticNonNull(levels: [Int!] = [ - 0 - ]) on FIELD_DEFINITION + directive @semanticNonNull(levels: [Int!] = [0]) on FIELD_DEFINITION """); } @@ -302,9 +290,7 @@ type __Schema { types: [String!]! } - directive @semanticNonNull(levels: [Int!] = [ - 0 - ]) on FIELD_DEFINITION + directive @semanticNonNull(levels: [Int!] = [0]) on FIELD_DEFINITION """); } @@ -329,9 +315,7 @@ type Query { hello: String @deprecated(reason: "old") @semanticNonNull } - directive @semanticNonNull(levels: [Int!] = [ - 0 - ]) on FIELD_DEFINITION + directive @semanticNonNull(levels: [Int!] = [0]) on FIELD_DEFINITION """); } @@ -364,9 +348,7 @@ directive @cost(weight: String!) on FIELD_DEFINITION directive @listSize(assumedSize: Int) on FIELD_DEFINITION - directive @semanticNonNull(levels: [Int!] = [ - 0 - ]) on FIELD_DEFINITION + directive @semanticNonNull(levels: [Int!] = [0]) on FIELD_DEFINITION directive @stream on FIELD """); @@ -403,9 +385,7 @@ enum Episode { NEW_HOPE } - directive @semanticNonNull(levels: [Int!] = [ - 0 - ]) on FIELD_DEFINITION + directive @semanticNonNull(levels: [Int!] = [0]) on FIELD_DEFINITION scalar DateTime """); @@ -434,9 +414,7 @@ type Query { hello: String @semanticNonNull } - directive @semanticNonNull(levels: [Int!] = [ - 0 - ]) on FIELD_DEFINITION + directive @semanticNonNull(levels: [Int!] = [0]) on FIELD_DEFINITION """); } @@ -461,9 +439,7 @@ type Query { tags: [String] @semanticNonNull(levels: [0, 1]) } - directive @semanticNonNull(levels: [Int!] = [ - 0 - ]) on FIELD_DEFINITION + directive @semanticNonNull(levels: [Int!] = [0]) on FIELD_DEFINITION """); } } 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 209c96230b3..e97c1a7e56b 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 @@ -22,7 +22,13 @@ type Query { "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) + @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 @@ -33,7 +39,13 @@ type Query { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") argumentWithExplicitType(arg: Version2): String! nullableArgumentWithExplicitType(arg: Version2): String! @@ -138,7 +150,13 @@ scalar Version2 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 +) 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( 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 8fc2176814f..173d4a06cc5 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 @@ -13,7 +13,13 @@ type Query1 { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") } @@ -59,7 +65,13 @@ interface ProductBase { 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 +) 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( 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 8fc2176814f..173d4a06cc5 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 @@ -13,7 +13,13 @@ type Query1 { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") } @@ -59,7 +65,13 @@ interface ProductBase { 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 +) 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( diff --git a/src/HotChocolate/Core/test/Types.Mutations.Tests/__snapshots__/AnnotationBasedMutations.Union_Result_7_Schema.graphql b/src/HotChocolate/Core/test/Types.Mutations.Tests/__snapshots__/AnnotationBasedMutations.Union_Result_7_Schema.graphql index 6bbd2ce59ba..2567ff5a12c 100644 --- a/src/HotChocolate/Core/test/Types.Mutations.Tests/__snapshots__/AnnotationBasedMutations.Union_Result_7_Schema.graphql +++ b/src/HotChocolate/Core/test/Types.Mutations.Tests/__snapshots__/AnnotationBasedMutations.Union_Result_7_Schema.graphql @@ -35,7 +35,12 @@ interface Error { message: String! } -union DoSomethingError = CustomError | Custom2Error | Custom4Error | Custom5 | Custom6 +union DoSomethingError = + | CustomError + | Custom2Error + | Custom4Error + | Custom5 + | Custom6 input DoSomethingInput { something: String! 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 62c3ca280c9..66411d13f3d 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 @@ -10,4 +10,10 @@ type Query { 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 +) on + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | ENUM + | INPUT_FIELD_DEFINITION 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 cba5295a869..c19ab713d43 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Composite/LookupTests.cs +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Composite/LookupTests.cs @@ -68,7 +68,8 @@ scalar FieldSelectionMap The @is directive is utilized on lookup fields to describe how the arguments can be mapped from the entity type that the lookup field resolves. """ - directive @is("The field selection map syntax." field: FieldSelectionMap!) on ARGUMENT_DEFINITION + directive @is("The field selection map syntax." field: FieldSelectionMap!) on + | ARGUMENT_DEFINITION """ The @lookup directive is used within a source schema to specify output fields @@ -111,14 +112,17 @@ scalar FieldSelectionSet The @is directive is utilized on lookup fields to describe how the arguments can be mapped from the entity type that the lookup field resolves. """ - directive @is("The field selection map syntax." field: FieldSelectionMap!) on ARGUMENT_DEFINITION + directive @is("The field selection map syntax." field: FieldSelectionMap!) on + | ARGUMENT_DEFINITION """ The @key directive is used to designate an entity's unique key, which identifies how to uniquely reference an instance of an entity across different source schemas. """ - directive @key("The field selection set syntax." fields: FieldSelectionSet!) on OBJECT | INTERFACE + directive @key("The field selection set syntax." fields: FieldSelectionSet!) on + | OBJECT + | INTERFACE """ The @lookup directive is used within a source schema to specify output fields @@ -167,14 +171,17 @@ scalar FieldSelectionSet The @is directive is utilized on lookup fields to describe how the arguments can be mapped from the entity type that the lookup field resolves. """ - directive @is("The field selection map syntax." field: FieldSelectionMap!) on ARGUMENT_DEFINITION + directive @is("The field selection map syntax." field: FieldSelectionMap!) on + | ARGUMENT_DEFINITION """ The @key directive is used to designate an entity's unique key, which identifies how to uniquely reference an instance of an entity across different source schemas. """ - directive @key("The field selection set syntax." fields: FieldSelectionSet!) on OBJECT | INTERFACE + directive @key("The field selection set syntax." fields: FieldSelectionSet!) on + | OBJECT + | INTERFACE """ The @lookup directive is used within a source schema to specify output fields @@ -220,7 +227,8 @@ Arguments annotated with the @require directive are removed from the composite s directive @require(field: FieldSelectionMap!) on ARGUMENT_DEFINITION """ - directive @require("The field selection map syntax." field: FieldSelectionMap!) on ARGUMENT_DEFINITION + directive @require("The field selection map syntax." field: FieldSelectionMap!) on + | ARGUMENT_DEFINITION """"); } 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 1ac8b8f4b2c..71c8f359bbe 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 @@ -24,4 +24,8 @@ enum Enum { directive @requiresOptIn( "The name of the feature that requires opt in." feature: String! -) repeatable on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION +) 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 1ac8b8f4b2c..71c8f359bbe 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 @@ -24,4 +24,8 @@ enum Enum { directive @requiresOptIn( "The name of the feature that requires opt in." feature: String! -) repeatable on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION +) 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 1ac8b8f4b2c..71c8f359bbe 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 @@ -24,4 +24,8 @@ enum Enum { directive @requiresOptIn( "The name of the feature that requires opt in." feature: String! -) repeatable on FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM_VALUE | INPUT_FIELD_DEFINITION +) repeatable on + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | ENUM_VALUE + | INPUT_FIELD_DEFINITION 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 a8e48946ed4..edd64f204d9 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 @@ -40,4 +40,15 @@ interface Book { author: String! } """ -directive @tag("The name of the tag." name: String!) repeatable on SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION +directive @tag("The name of the tag." name: String!) repeatable on + | SCHEMA + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | INTERFACE + | UNION + | ENUM + | ENUM_VALUE + | INPUT_OBJECT + | INPUT_FIELD_DEFINITION diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/TagDirectiveTests.SchemaFirst_Tag.graphql b/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/TagDirectiveTests.SchemaFirst_Tag.graphql index dcede47e020..a5b97c24ef2 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/TagDirectiveTests.SchemaFirst_Tag.graphql +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Directives/__snapshots__/TagDirectiveTests.SchemaFirst_Tag.graphql @@ -18,4 +18,15 @@ interface Book { author: String! } """ -directive @tag("The name of the tag." name: String!) repeatable on SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION +directive @tag("The name of the tag." name: String!) repeatable on + | SCHEMA + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | INTERFACE + | UNION + | ENUM + | ENUM_VALUE + | INPUT_OBJECT + | INPUT_FIELD_DEFINITION 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 c85cc9da5b9..1d45ae467be 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,4 +12,6 @@ type Foo { "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") + @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 46ce84aaa7a..217b6984899 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,4 +12,6 @@ type Bar { "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") + @specifiedBy( + url: "https://scalars.graphql.org/chillicream/local-date-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 3ce14502f4d..1305cc9cee3 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 @@ -15,10 +15,15 @@ type Query { comment """ outputFieldMulti: String - outputFieldWithArgs("Single line comment" arg1: SomeInput!, """ - Multi line - comment - """ arg2: OtherInput!): String + outputFieldWithArgs( + "Single line comment" + arg1: SomeInput! + """ + Multi line + comment + """ + arg2: OtherInput! + ): String } """ @@ -48,10 +53,15 @@ interface SomeInterface { comment """ fieldMulti: String - fieldWithArgs("Single line comment" arg1: String!, """ - Multi line - comment - """ arg2: String!): String + fieldWithArgs( + "Single line comment" + arg1: String! + """ + Multi line + comment + """ + arg2: String! + ): String } "Single line comment" @@ -123,16 +133,26 @@ scalar Other scalar Some "Single line comment" -directive @other("Single line comment" arg1: String, """ -Multi line -comment -""" arg2: String) on FIELD +directive @other( + "Single line comment" + arg1: String + """ + Multi line + comment + """ + arg2: String +) on FIELD """ Multi line comment """ -directive @some("Single line comment" arg1: String, """ -Multi line -comment -""" arg2: String) on FIELD +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__/InputObjectTypeTests.Input_Infer_Default_Values.snap b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/InputObjectTypeTests.Input_Infer_Default_Values.snap index bd380c9f2a0..d84d34a5f35 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/InputObjectTypeTests.Input_Infer_Default_Values.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/InputObjectTypeTests.Input_Infer_Default_Values.snap @@ -14,13 +14,7 @@ input InputWithDefaultInput { withStringDefault: String = "abc" withNullDefault: String enum: FooEnum! = BAR - complexInput: [[ComplexInput!]!]! = [ - [ - { - foo: 1 - } - ] - ] + complexInput: [[ComplexInput!]!]! = [[{ foo: 1 }]] withoutDefault: String } diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/ObjectTypeTests.ObjectType_FieldDefaultValue_SerializesCorrectly.snap b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/ObjectTypeTests.ObjectType_FieldDefaultValue_SerializesCorrectly.snap index a1970befda4..39512c2e9d2 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/ObjectTypeTests.ObjectType_FieldDefaultValue_SerializesCorrectly.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/ObjectTypeTests.ObjectType_FieldDefaultValue_SerializesCorrectly.snap @@ -3,9 +3,7 @@ schema { } type Bar { - _123(_456: FooInput = { - description: "hello" - }): String + _123(_456: FooInput = { description: "hello" }): String } input FooInput { 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 f94509f1788..0f70c7d2b05 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 @@ -30,4 +30,10 @@ scalar Scalar 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 +) on + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | ENUM + | INPUT_FIELD_DEFINITION 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 75fce81b1aa..97b070a3deb 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 @@ -34,4 +34,10 @@ scalar Scalar @cost(weight: "1") 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 +) on + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | ENUM + | INPUT_FIELD_DEFINITION 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 83667823307..5ec0b443712 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 @@ -50,7 +50,12 @@ type Query { where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10") ): BooksConnection - @listSize(assumedSize: 50, slicingArguments: ["first", "last"], sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") booksWithTotalCount( "Returns the first _n_ elements from the list." @@ -64,7 +69,12 @@ type Query { where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10") ): BooksTotalConnection - @listSize(assumedSize: 50, slicingArguments: ["first", "last"], sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") booksOffset( skip: Int @@ -72,7 +82,12 @@ type Query { where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10") ): BooksOffsetCollectionSegment - @listSize(assumedSize: 50, slicingArguments: ["take"], sizedFields: ["items"], requireOneSlicingArgument: false) + @listSize( + assumedSize: 50 + slicingArguments: ["take"] + sizedFields: ["items"] + requireOneSlicingArgument: false + ) @cost(weight: "10") booksOffsetWithTotalCount( skip: Int @@ -80,7 +95,12 @@ type Query { where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10") ): BooksTotalCollectionSegment - @listSize(assumedSize: 50, slicingArguments: ["take"], sizedFields: ["items"], requireOneSlicingArgument: false) + @listSize( + assumedSize: 50 + slicingArguments: ["take"] + sizedFields: ["items"] + requireOneSlicingArgument: false + ) @cost(weight: "10") } @@ -118,7 +138,12 @@ type Book { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) } "A connection to a list of items." @@ -230,7 +255,13 @@ enum SortEnumType { 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 +) 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( 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 ec44c17eae3..6ebe01d7390 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 @@ -15,7 +15,12 @@ type Query { where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10") ): BooksConnection - @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"]) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + ) @cost(weight: "10") booksWithTotalCount( "Returns the first _n_ elements from the list." @@ -29,7 +34,12 @@ type Query { where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10") ): BooksTotalConnection - @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"]) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + ) @cost(weight: "10") booksOffset( skip: Int @@ -37,7 +47,12 @@ type Query { where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10") ): BooksOffsetCollectionSegment - @listSize(assumedSize: 50, slicingArguments: ["take"], slicingArgumentDefaultValue: 10, sizedFields: ["items"]) + @listSize( + assumedSize: 50 + slicingArguments: ["take"] + slicingArgumentDefaultValue: 10 + sizedFields: ["items"] + ) @cost(weight: "10") booksOffsetWithTotalCount( skip: Int @@ -45,7 +60,12 @@ type Query { where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10") ): BooksTotalCollectionSegment - @listSize(assumedSize: 50, slicingArguments: ["take"], slicingArgumentDefaultValue: 10, sizedFields: ["items"]) + @listSize( + assumedSize: 50 + slicingArguments: ["take"] + slicingArgumentDefaultValue: 10 + sizedFields: ["items"] + ) @cost(weight: "10") } @@ -83,7 +103,12 @@ type Book { "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"]) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + ) } "A connection to a list of items." @@ -195,7 +220,13 @@ enum SortEnumType { 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 +) 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( 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 57c39733086..dd5e2cad609 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 @@ -50,7 +50,13 @@ type Query { where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10") ): BooksConnection - @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 2, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @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." @@ -64,7 +70,13 @@ type Query { where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10") ): BooksTotalConnection - @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 2, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 2 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") booksOffset( skip: Int @@ -72,7 +84,13 @@ type Query { where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10") ): BooksOffsetCollectionSegment - @listSize(assumedSize: 50, slicingArguments: ["take"], slicingArgumentDefaultValue: 2, sizedFields: ["items"], requireOneSlicingArgument: false) + @listSize( + assumedSize: 50 + slicingArguments: ["take"] + slicingArgumentDefaultValue: 2 + sizedFields: ["items"] + requireOneSlicingArgument: false + ) @cost(weight: "10") booksOffsetWithTotalCount( skip: Int @@ -80,7 +98,13 @@ type Query { where: BookFilterInput @cost(weight: "10") order: [BookSortInput!] @cost(weight: "10") ): BooksTotalCollectionSegment - @listSize(assumedSize: 50, slicingArguments: ["take"], slicingArgumentDefaultValue: 2, sizedFields: ["items"], requireOneSlicingArgument: false) + @listSize( + assumedSize: 50 + slicingArguments: ["take"] + slicingArgumentDefaultValue: 2 + sizedFields: ["items"] + requireOneSlicingArgument: false + ) @cost(weight: "10") } @@ -118,7 +142,13 @@ type Book { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 2 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) } "A connection to a list of items." @@ -230,7 +260,13 @@ enum SortEnumType { 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 +) 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( 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 f94509f1788..0f70c7d2b05 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 @@ -30,4 +30,10 @@ scalar Scalar 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 +) on + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | ENUM + | INPUT_FIELD_DEFINITION 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 75fce81b1aa..97b070a3deb 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 @@ -34,4 +34,10 @@ scalar Scalar @cost(weight: "1") 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 +) on + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | ENUM + | INPUT_FIELD_DEFINITION 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 a97e5cd8ff0..291e56f59b9 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 @@ -13,7 +13,13 @@ type Query2 { "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) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 42 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) } "A connection to a list of items." 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 a3c14a61c46..6bf1a6e4476 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 @@ -13,7 +13,13 @@ type Query3 { "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) + @listSize( + assumedSize: 10 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 999 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) } "A connection to a list of items." 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 88666239dd0..656e1c14456 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 @@ -351,7 +351,9 @@ scalar Short "The `UnsignedByte` scalar type represents an unsigned 8-bit integer." scalar UnsignedByte - @specifiedBy(url: "https://scalars.graphql.org/chillicream/unsigned-byte.html") + @specifiedBy( + url: "https://scalars.graphql.org/chillicream/unsigned-byte.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") 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 87b64c53875..b9948b791b7 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 @@ -201,7 +201,9 @@ scalar Short "The `UnsignedByte` scalar type represents an unsigned 8-bit integer." scalar UnsignedByte - @specifiedBy(url: "https://scalars.graphql.org/chillicream/unsigned-byte.html") + @specifiedBy( + url: "https://scalars.graphql.org/chillicream/unsigned-byte.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") 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 2e42a73e782..117b368f159 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 @@ -21,7 +21,13 @@ type Query { where: ProductTypeFilterInput @cost(weight: "10") order: [ProductTypeSortInput!] @cost(weight: "10") ): ProductTypeConnection! - @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") scopeState: String! brands( @@ -35,7 +41,13 @@ type Query { before: String where: BrandFilterInput @cost(weight: "10") ): BrandConnection! - @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @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") @@ -51,7 +63,13 @@ type Query { where: ProductFilterInput @cost(weight: "10") order: [ProductSortInput!] @cost(weight: "10") ): ProductConnection! - @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @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( @@ -66,7 +84,13 @@ type Query { where: ProductFilterInput @cost(weight: "10") order: [ProductSortInput!] @cost(weight: "10") ): ProductConnection! - @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @listSize( + assumedSize: 50 + slicingArguments: ["first", "last"] + slicingArgumentDefaultValue: 10 + sizedFields: ["edges", "nodes"] + requireOneSlicingArgument: false + ) @cost(weight: "10") singleProperties: [SingleProperty!]! @cost(weight: "10") statementTransaction: StatementTransaction! @@ -90,7 +114,13 @@ type Brand implements Node { where: ProductFilterInput @cost(weight: "10") order: [ProductSortInput!] @cost(weight: "10") ): BrandProductsConnection! - @listSize(assumedSize: 50, slicingArguments: ["first", "last"], slicingArgumentDefaultValue: 10, sizedFields: ["edges", "nodes"], requireOneSlicingArgument: false) + @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") @@ -412,13 +442,21 @@ scalar Decimal "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") + @specifiedBy( + url: "https://scalars.graphql.org/chillicream/unsigned-byte.html" + ) "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 +) on + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | ENUM + | INPUT_FIELD_DEFINITION """ The @internal directive is used in combination with lookup fields and allows you 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 3a428e69188..0296f8c1d46 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 @@ -86,4 +86,6 @@ type PageInfo { startCursor: String } -directive @defer(if: Boolean = true, label: String) on FRAGMENT_SPREAD | INLINE_FRAGMENT +directive @defer(if: Boolean = true, label: String) on + | FRAGMENT_SPREAD + | INLINE_FRAGMENT 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 574d3ad9050..8fbb2fe502d 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 @@ -114,7 +114,26 @@ sourceSchemas: } "Directive description" - directive @test("Directive argument description" arg: String! = "default") repeatable on QUERY | MUTATION | SUBSCRIPTION | FIELD | FRAGMENT_DEFINITION | FRAGMENT_SPREAD | INLINE_FRAGMENT | VARIABLE_DEFINITION | SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION + directive @test("Directive argument description" arg: String! = "default") repeatable on + | QUERY + | MUTATION + | SUBSCRIPTION + | FIELD + | FRAGMENT_DEFINITION + | FRAGMENT_SPREAD + | INLINE_FRAGMENT + | VARIABLE_DEFINITION + | SCHEMA + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | INTERFACE + | UNION + | ENUM + | ENUM_VALUE + | INPUT_OBJECT + | INPUT_FIELD_DEFINITION operationPlan: operation: - document: | 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 eaf3f5e3ff8..0b97b137057 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 @@ -115,7 +115,26 @@ sourceSchemas: } "Directive description" - directive @test("Directive argument description" arg: String! = "default") repeatable on QUERY | MUTATION | SUBSCRIPTION | FIELD | FRAGMENT_DEFINITION | FRAGMENT_SPREAD | INLINE_FRAGMENT | VARIABLE_DEFINITION | SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION + directive @test("Directive argument description" arg: String! = "default") repeatable on + | QUERY + | MUTATION + | SUBSCRIPTION + | FIELD + | FRAGMENT_DEFINITION + | FRAGMENT_SPREAD + | INLINE_FRAGMENT + | VARIABLE_DEFINITION + | SCHEMA + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | INTERFACE + | UNION + | ENUM + | ENUM_VALUE + | INPUT_OBJECT + | INPUT_FIELD_DEFINITION operationPlan: operation: - document: | 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 9b23178e4af..d7fc3d53b6e 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 @@ -14,14 +14,14 @@ request: name } types { - ... FullType + ...FullType } directives { name description isRepeatable args(includeDeprecated: true) { - ... InputValue + ...InputValue } locations } @@ -38,19 +38,19 @@ request: name description args(includeDeprecated: true) { - ... InputValue + ...InputValue } type { - ... TypeRef + ...TypeRef } isDeprecated deprecationReason } inputFields(includeDeprecated: true) { - ... InputValue + ...InputValue } interfaces { - ... TypeRef + ...TypeRef } enumValues(includeDeprecated: true) { name @@ -59,7 +59,7 @@ request: deprecationReason } possibleTypes { - ... TypeRef + ...TypeRef } } @@ -67,7 +67,7 @@ request: name description type { - ... TypeRef + ...TypeRef } defaultValue isDeprecated @@ -1872,7 +1872,26 @@ sourceSchemas: } "Directive description" - directive @test("Directive argument description" arg: String! = "default") repeatable on QUERY | MUTATION | SUBSCRIPTION | FIELD | FRAGMENT_DEFINITION | FRAGMENT_SPREAD | INLINE_FRAGMENT | VARIABLE_DEFINITION | SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION + directive @test("Directive argument description" arg: String! = "default") repeatable on + | QUERY + | MUTATION + | SUBSCRIPTION + | FIELD + | FRAGMENT_DEFINITION + | FRAGMENT_SPREAD + | INLINE_FRAGMENT + | VARIABLE_DEFINITION + | SCHEMA + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | INTERFACE + | UNION + | ENUM + | ENUM_VALUE + | INPUT_OBJECT + | INPUT_FIELD_DEFINITION operationPlan: operation: - document: | @@ -2081,7 +2100,7 @@ operationPlan: } } name: IntrospectionQuery - hash: 100115cb7dd55b6a817c8f83458b8fc5 + hash: df63680b2f2c0fb31760baf2f4f0b505 searchSpace: 1 expandedNodes: 1 nodes: 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 c1b81ad34ce..48956db6337 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 @@ -117,7 +117,26 @@ sourceSchemas: } "Directive description" - directive @test("Directive argument description" arg: String! = "default") repeatable on QUERY | MUTATION | SUBSCRIPTION | FIELD | FRAGMENT_DEFINITION | FRAGMENT_SPREAD | INLINE_FRAGMENT | VARIABLE_DEFINITION | SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION + directive @test("Directive argument description" arg: String! = "default") repeatable on + | QUERY + | MUTATION + | SUBSCRIPTION + | FIELD + | FRAGMENT_DEFINITION + | FRAGMENT_SPREAD + | INLINE_FRAGMENT + | VARIABLE_DEFINITION + | SCHEMA + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | INTERFACE + | UNION + | ENUM + | ENUM_VALUE + | INPUT_OBJECT + | INPUT_FIELD_DEFINITION operationPlan: operation: - document: | 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 f3106117ead..3a68a82842a 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 @@ -132,7 +132,26 @@ sourceSchemas: } "Directive description" - directive @test("Directive argument description" arg: String! = "default") repeatable on QUERY | MUTATION | SUBSCRIPTION | FIELD | FRAGMENT_DEFINITION | FRAGMENT_SPREAD | INLINE_FRAGMENT | VARIABLE_DEFINITION | SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION + directive @test("Directive argument description" arg: String! = "default") repeatable on + | QUERY + | MUTATION + | SUBSCRIPTION + | FIELD + | FRAGMENT_DEFINITION + | FRAGMENT_SPREAD + | INLINE_FRAGMENT + | VARIABLE_DEFINITION + | SCHEMA + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | INTERFACE + | UNION + | ENUM + | ENUM_VALUE + | INPUT_OBJECT + | INPUT_FIELD_DEFINITION operationPlan: operation: - document: | diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Introspection_Field_Type_Without_SelectionSet.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Introspection_Field_Type_Without_SelectionSet.yaml index 7df12b12b80..cd74f02b1b7 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Introspection_Field_Type_Without_SelectionSet.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Introspection_Field_Type_Without_SelectionSet.yaml @@ -109,4 +109,23 @@ sourceSchemas: } "Directive description" - directive @test("Directive argument description" arg: String! = "default") repeatable on QUERY | MUTATION | SUBSCRIPTION | FIELD | FRAGMENT_DEFINITION | FRAGMENT_SPREAD | INLINE_FRAGMENT | VARIABLE_DEFINITION | SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION + directive @test("Directive argument description" arg: String! = "default") repeatable on + | QUERY + | MUTATION + | SUBSCRIPTION + | FIELD + | FRAGMENT_DEFINITION + | FRAGMENT_SPREAD + | INLINE_FRAGMENT + | VARIABLE_DEFINITION + | SCHEMA + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | INTERFACE + | UNION + | ENUM + | ENUM_VALUE + | INPUT_OBJECT + | INPUT_FIELD_DEFINITION diff --git a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Introspection_OfType_Without_SelectionSet.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Introspection_OfType_Without_SelectionSet.yaml index 4680de9fda0..e1285b4fad9 100644 --- a/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Introspection_OfType_Without_SelectionSet.yaml +++ b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/IntrospectionTests.Introspection_OfType_Without_SelectionSet.yaml @@ -109,4 +109,23 @@ sourceSchemas: } "Directive description" - directive @test("Directive argument description" arg: String! = "default") repeatable on QUERY | MUTATION | SUBSCRIPTION | FIELD | FRAGMENT_DEFINITION | FRAGMENT_SPREAD | INLINE_FRAGMENT | VARIABLE_DEFINITION | SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION + directive @test("Directive argument description" arg: String! = "default") repeatable on + | QUERY + | MUTATION + | SUBSCRIPTION + | FIELD + | FRAGMENT_DEFINITION + | FRAGMENT_SPREAD + | INLINE_FRAGMENT + | VARIABLE_DEFINITION + | SCHEMA + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | INTERFACE + | UNION + | ENUM + | ENUM_VALUE + | INPUT_OBJECT + | INPUT_FIELD_DEFINITION 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 3ec0e87cca6..332ec27a063 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 @@ -531,7 +531,26 @@ sourceSchemas: } "Directive description" - directive @test("Directive argument description" arg: String! = "default") repeatable on QUERY | MUTATION | SUBSCRIPTION | FIELD | FRAGMENT_DEFINITION | FRAGMENT_SPREAD | INLINE_FRAGMENT | VARIABLE_DEFINITION | SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION + directive @test("Directive argument description" arg: String! = "default") repeatable on + | QUERY + | MUTATION + | SUBSCRIPTION + | FIELD + | FRAGMENT_DEFINITION + | FRAGMENT_SPREAD + | INLINE_FRAGMENT + | VARIABLE_DEFINITION + | SCHEMA + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | INTERFACE + | UNION + | ENUM + | ENUM_VALUE + | INPUT_OBJECT + | INPUT_FIELD_DEFINITION operationPlan: operation: - document: | 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 cda34725633..ec94db4409f 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 @@ -150,7 +150,12 @@ type ProductDimension { type Product @fusion__type(schema: A) { delivery(zip: String! @fusion__inputField(schema: A)): DeliveryEstimates @fusion__field(schema: A) - @fusion__requires(schema: A, requirements: "dimension { size weight }", field: "delivery(zip: String! size: Int! weight: Int!): DeliveryEstimates", map: [null, "dimension.size", "dimension.weight"]) + @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) } 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 62a67ae9180..0d92a3912a4 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 @@ -41,7 +41,14 @@ type Product implements Node interface Node @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id", field: "node(id: ID!): Node", map: ["id"], path: null, internal: false) { + @fusion__lookup( + schema: A + key: "id" + field: "node(id: ID!): Node" + map: ["id"] + path: null + internal: false + ) { id: ID! @fusion__field(schema: A) } """, 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 2432c2d69ef..e29b7f0a95e 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 @@ -195,8 +195,22 @@ type Query @fusion__type(schema: A) { interface Product @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id", field: "productById(id: ID!): Product", map: ["id"], path: null, internal: false) - @fusion__lookup(schema: A, key: "name", field: "productByName(name: String!): Product", map: ["name"], path: null, internal: false) { + @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) } @@ -243,7 +257,14 @@ type Query @fusion__type(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) { + @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) } @@ -251,14 +272,28 @@ type Cat implements Animal 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) { + @fusion__lookup( + schema: A + key: "id" + field: "dogById(id: ID!): Dog" + map: ["id"] + path: "animalById" + internal: false + ) { dogById(id: ID! @fusion__inputField(schema: A)): Dog @fusion__field(schema: A) id: ID! @fusion__field(schema: A) } interface Animal @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id", field: "animalById(id: ID!): Animal", map: ["id"], path: null, internal: false) { + @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.Object.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.Object.Tests.cs index b66d88f7d84..0d9fbeade82 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 @@ -231,8 +231,22 @@ type Query @fusion__type(schema: A) { type Product @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id", field: "productById(id: ID!): Product", map: ["id"], path: null, internal: false) - @fusion__lookup(schema: A, key: "name", field: "productByName(name: String!): Product", map: ["name"], path: null, internal: false) { + @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) } @@ -278,8 +292,22 @@ type Query @fusion__type(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) { + @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) @@ -287,8 +315,22 @@ type Product 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) { + @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) @@ -347,9 +389,30 @@ type Lookups2 @fusion__type(schema: A) { type Product @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id", field: "productById(id: ID!): Product", map: ["id"], path: null, internal: false) - @fusion__lookup(schema: A, key: "sku", field: "productBySku(sku: String!): Product", map: ["sku"], path: "lookups1", internal: false) - @fusion__lookup(schema: A, key: "name", field: "productByName(name: String!): Product", map: ["name"], path: "lookups1.lookups2", internal: false) { + @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) } """); @@ -393,7 +456,14 @@ type Address @fusion__type(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) { + @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) } @@ -442,8 +512,22 @@ type Query @fusion__type(schema: A) @fusion__type(schema: B) { type Person @fusion__type(schema: A) @fusion__type(schema: B) - @fusion__lookup(schema: A, key: "id", field: "personById(id: ID!): Person", map: ["id"], path: null, internal: false) - @fusion__lookup(schema: B, key: "sku", field: "personBySku(sku: String!): Person", map: ["sku"], path: null, internal: false) { + @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) } @@ -481,7 +565,14 @@ type Query @fusion__type(schema: A) { type Product @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id categoryId", field: "productByIdAndCategoryId(id: ID! categoryId: Int): Product!", map: ["id", "categoryId"], path: null, internal: false) { + @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) } @@ -547,14 +638,70 @@ type Query @fusion__type(schema: A) { type Brand @fusion__type(schema: A) - @fusion__lookup(schema: A, key: "id", field: "brand1(by: BrandByInput1!): Brand", map: ["{ id }"], path: null, internal: false) - @fusion__lookup(schema: A, key: "key", field: "brand1(by: BrandByInput1!): Brand", map: ["{ key }"], path: null, internal: false) - @fusion__lookup(schema: A, key: "name id", field: "brand2(name: String! and: BrandByInput1!): Brand", map: ["name", "{ id }"], path: null, internal: false) - @fusion__lookup(schema: A, key: "name key", field: "brand2(name: String! and: BrandByInput1!): Brand", map: ["name", "{ key }"], path: null, internal: false) - @fusion__lookup(schema: A, key: "id name", field: "brand3(by: BrandByInput1! and: BrandByInput2!): Brand", map: ["{ id }", "{ name }"], path: null, internal: false) - @fusion__lookup(schema: A, key: "key name", field: "brand3(by: BrandByInput1! and: BrandByInput2!): Brand", map: ["{ key }", "{ name }"], path: null, internal: false) - @fusion__lookup(schema: A, key: "id title", field: "brand3(by: BrandByInput1! and: BrandByInput2!): Brand", map: ["{ id }", "{ title }"], path: null, internal: false) - @fusion__lookup(schema: A, key: "key title", field: "brand3(by: BrandByInput1! and: BrandByInput2!): Brand", map: ["{ key }", "{ title }"], path: null, internal: false) { + @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) @@ -601,7 +748,14 @@ type Query @fusion__type(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) { + @fusion__lookup( + schema: A + key: "id" + field: "productById(id: ID!): Product" + map: ["id"] + path: null + internal: true + ) { id: ID! @fusion__field(schema: A) } """); @@ -637,7 +791,14 @@ type Query @fusion__type(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: "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.OutputField.Tests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaMerger.OutputField.Tests.cs index 46388fed720..27efca0d66d 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 @@ -117,7 +117,12 @@ 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"]) + @fusion__requires( + schema: B + requirements: "percent" + field: "discountPercentage(percent: Int): Int" + map: ["percent"] + ) percent: Int @fusion__field(schema: A) } """); 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 73983a3ced6..1b80c938ee2 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 @@ -100,7 +100,7 @@ input FooInput @tag(name: "b") { directive @tag("Some description" name: String!) repeatable on {{s_tagLocations}} """ ], - $$""" + """ schema @tag(name: "a") @tag(name: "b") { query: Query } @@ -171,7 +171,18 @@ scalar FooScalar @fusion__type(schema: A) @fusion__type(schema: B) - directive @tag(name: String!) repeatable on {{s_tagLocations}} + directive @tag(name: String!) repeatable on + | SCHEMA + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | INTERFACE + | UNION + | ENUM + | ENUM_VALUE + | INPUT_OBJECT + | INPUT_FIELD_DEFINITION """, options => options.TagMergeBehavior = DirectiveMergeBehavior.Include); } @@ -220,14 +231,25 @@ scalar Foo @tag(name: "b") directive @tag(name: String!) repeatable on {s_tagLocations} """ ], - $""" + """ scalar Foo - @fusion__tag(name: "a") - @fusion__tag(name: "b") - @fusion__type(schema: A) - @fusion__type(schema: B) + @fusion__tag(name: "a") + @fusion__tag(name: "b") + @fusion__type(schema: A) + @fusion__type(schema: B) - directive @fusion__tag(name: String!) repeatable on {s_tagLocations} + directive @fusion__tag(name: String!) repeatable on + | SCHEMA + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | INTERFACE + | UNION + | ENUM + | ENUM_VALUE + | INPUT_OBJECT + | INPUT_FIELD_DEFINITION """, options => options.TagMergeBehavior = DirectiveMergeBehavior.IncludePrivate); } @@ -251,10 +273,21 @@ scalar Foo @tag(name: "same") @tag(name: "same") directive @tag(name: String!) repeatable on {s_tagLocations} """ ], - $""" + """ scalar Foo @tag(name: "same") @fusion__type(schema: A) @fusion__type(schema: B) - directive @tag(name: String!) repeatable on {s_tagLocations} + directive @tag(name: String!) repeatable on + | SCHEMA + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | INTERFACE + | UNION + | ENUM + | ENUM_VALUE + | INPUT_OBJECT + | INPUT_FIELD_DEFINITION """, options => options.TagMergeBehavior = DirectiveMergeBehavior.Include); } 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 fe5feb00d0a..c7fe2d33e8d 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 @@ -223,7 +223,14 @@ 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__lookup( + schema: A + key: "id" + field: "animalById(id: ID!): Animal" + map: ["id"] + path: null + internal: false + ) = Dog | Cat """); } @@ -262,13 +269,27 @@ type Query @fusion__type(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) { + @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) { + @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) } @@ -276,7 +297,14 @@ 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__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/__snapshots__/SourceSchemaMergerTests.Merge_FourNamedSchemas_AddsFusionDefinitions.graphql b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/__snapshots__/SourceSchemaMergerTests.Merge_FourNamedSchemas_AddsFusionDefinitions.graphql index 3995b47f310..28df6db0ac9 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 @@ -24,7 +24,13 @@ directive @fusion__cost( schema: fusion__Schema! "The weight defined in the source schema." weight: String! -) repeatable on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +) 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( @@ -53,7 +59,17 @@ directive @fusion__implements( ) 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 +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( 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 fc5b875f940..d6ad1b96e27 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 @@ -96,6 +96,9 @@ enum ScalarSerializationType { scalar Custom @serializeAs(type: STRING) -directive @defer(if: Boolean = true, label: String) on FRAGMENT_SPREAD | INLINE_FRAGMENT +directive @defer(if: Boolean = true, label: String) on + | FRAGMENT_SPREAD + | INLINE_FRAGMENT -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 99cb588baf6..d151c6cfa19 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 @@ -96,4 +96,6 @@ enum ScalarSerializationType { scalar Custom -directive @defer(if: Boolean = true, label: String) on FRAGMENT_SPREAD | INLINE_FRAGMENT +directive @defer(if: Boolean = true, label: String) on + | FRAGMENT_SPREAD + | INLINE_FRAGMENT diff --git a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/LookupTests.Require_Inaccessible_Data.graphql b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/LookupTests.Require_Inaccessible_Data.graphql index f3ab1492ae8..847ffb314b2 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/LookupTests.Require_Inaccessible_Data.graphql +++ b/src/HotChocolate/Fusion/test/Fusion.Execution.Tests/Planning/__snapshots__/LookupTests.Require_Inaccessible_Data.graphql @@ -16,4 +16,6 @@ type Product { name: String! } -directive @defer(if: Boolean = true, label: String) on FRAGMENT_SPREAD | INLINE_FRAGMENT +directive @defer(if: Boolean = true, label: String) on + | FRAGMENT_SPREAD + | INLINE_FRAGMENT diff --git a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.Directives.cs b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.Directives.cs new file mode 100644 index 00000000000..892dd1c398c --- /dev/null +++ b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.Directives.cs @@ -0,0 +1,54 @@ +namespace HotChocolate.Language.Utilities; + +public sealed partial class SyntaxSerializer +{ + private void WriteDirective(DirectiveNode node, ISyntaxWriter writer) + { + if (!_indented || node.Arguments.Count == 0) + { + writer.WriteDirective(node); + return; + } + + var flatWidth = MeasureFlatDirective(node); + + if (!ArgumentsContainBlockString(node.Arguments) + && writer.Column + flatWidth <= _printWidth) + { + writer.WriteDirective(node); + return; + } + + writer.Write('@'); + writer.WriteName(node.Name); + writer.Write('('); + writer.Indent(); + + foreach (var argument in node.Arguments) + { + writer.WriteLine(); + writer.WriteIndent(); + WriteArgument(argument, writer); + } + + writer.WriteLine(); + writer.Unindent(); + writer.WriteIndent(); + writer.Write(')'); + } + + private int MeasureFlatDirective(DirectiveNode node) + { + var writer = StringSyntaxWriter.Rent(); + + try + { + writer.WriteDirective(node); + return writer.Column; + } + finally + { + StringSyntaxWriter.Return(writer); + } + } +} 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 d942147cba1..f2b093637ed 100644 --- a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.QuerySyntax.cs +++ b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.QuerySyntax.cs @@ -51,7 +51,8 @@ private void WriteVariableDefinitions( var flatWidth = MeasureFlatVariableDefinitions(variableDefinitions); - if (writer.Column + flatWidth <= _printWidth) + if (!VariableDefinitionsContainBlockString(variableDefinitions) + && writer.Column + flatWidth <= _printWidth) { writer.Write('('); @@ -149,7 +150,7 @@ private void VisitVariableDefinition(VariableDefinitionNode node, ISyntaxWriter if (node.DefaultValue is not null) { writer.Write(" = "); - writer.WriteValue(node.DefaultValue, _indented); + WriteValue(node.DefaultValue, writer); } WriteDirectives(node.Directives, writer); @@ -272,7 +273,8 @@ private void WriteArguments( var flatWidth = MeasureFlatArguments(arguments); - if (writer.Column + flatWidth <= _printWidth) + if (!ArgumentsContainBlockString(arguments) + && writer.Column + flatWidth <= _printWidth) { writer.Write('('); writer.WriteMany(arguments, (n, w) => w.WriteArgument(n)); @@ -287,7 +289,7 @@ private void WriteArguments( { writer.WriteLine(); writer.WriteIndent(); - writer.WriteArgument(argument); + WriteArgument(argument, writer); } writer.WriteLine(); @@ -316,7 +318,7 @@ private int MeasureFlatArguments(IReadOnlyList arguments) private void VisitFragmentSpread(FragmentSpreadNode node, ISyntaxWriter writer) { - writer.Write("... "); + writer.Write("..."); writer.WriteName(node.Name); WriteDirectives(node.Directives, writer); 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 20542b1da27..2da1c6e20c5 100644 --- a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.SchemaSyntax.cs +++ b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.SchemaSyntax.cs @@ -58,7 +58,14 @@ private void VisitObjectTypeDefinitionBase( writer.WriteSpace(); writer.Write(Keywords.Implements); writer.WriteSpace(); - writer.WriteMany(node.Interfaces, (n, _) => writer.WriteNamedType(n), " & "); + WriteSeparatedList( + node.Interfaces, + " & ", + " &", + SeparatedListBreakStyle.Trailing, + string.Empty, + (n, w) => w.WriteNamedType(n), + writer); } WriteDirectives(node.Directives, writer); @@ -105,10 +112,14 @@ private void VisitInterfaceTypeDefinitionBase( writer.WriteSpace(); writer.Write(Keywords.Implements); writer.WriteSpace(); - writer.WriteMany( + WriteSeparatedList( node.Interfaces, - (n, _) => writer.WriteNamedType(n), - " & "); + " & ", + " &", + SeparatedListBreakStyle.Trailing, + string.Empty, + (n, w) => w.WriteNamedType(n), + writer); } WriteDirectives(node.Directives, writer); @@ -154,9 +165,15 @@ private void VisitUnionTypeDefinitionBase( writer.WriteSpace(); writer.Write('='); - writer.WriteSpace(); - writer.WriteMany(node.Types, (n, _) => writer.WriteNamedType(n), " | "); + WriteSeparatedList( + node.Types, + " | ", + "| ", + SeparatedListBreakStyle.Leading, + " ", + (n, w) => w.WriteNamedType(n), + writer); } private void VisitEnumTypeDefinition( @@ -341,7 +358,8 @@ private void WriteArgumentDefinitions( var flatWidth = MeasureFlatArgumentDefinitions(arguments); - if (writer.Column + flatWidth <= _printWidth) + if (!ArgumentDefinitionsContainBlockString(arguments) + && writer.Column + flatWidth <= _printWidth) { writer.Write("("); @@ -420,9 +438,15 @@ private void VisitDirectiveDefinition( } writer.Write(Keywords.On); - writer.WriteSpace(); - writer.WriteMany(node.Locations, (n, _) => writer.WriteName(n), " | "); + WriteSeparatedList( + node.Locations, + " | ", + "| ", + SeparatedListBreakStyle.Leading, + " ", + (n, w) => w.WriteName(n), + writer); } private void VisitArgumentValueDefinition( @@ -453,7 +477,7 @@ private void WriteInputValueDefinition( writer.WriteSpace(); writer.Write("="); writer.WriteSpace(); - writer.WriteValue(value, _indented); + WriteValue(value, writer); } if (node.Directives.Count > 0) @@ -518,7 +542,7 @@ private void WriteDirectives( writer.WriteIndent(); writer.WriteMany( directives, - (n, w) => w.WriteDirective(n), + (n, w) => WriteDirective(n, w), w => { w.WriteLine(); @@ -530,7 +554,8 @@ private void WriteDirectives( var flatWidth = MeasureFlatDirectives(directives); - if (writer.Column + flatWidth <= _printWidth) + if (!DirectivesContainBlockString(directives) + && writer.Column + flatWidth <= _printWidth) { writer.WriteSpace(); writer.WriteMany( @@ -545,7 +570,7 @@ private void WriteDirectives( writer.WriteIndent(); writer.WriteMany( directives, - (n, w) => w.WriteDirective(n), + (n, w) => WriteDirective(n, w), w => { w.WriteLine(); diff --git a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.SeparatedList.cs b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.SeparatedList.cs new file mode 100644 index 00000000000..c6a100271e7 --- /dev/null +++ b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.SeparatedList.cs @@ -0,0 +1,138 @@ +namespace HotChocolate.Language.Utilities; + +public sealed partial class SyntaxSerializer +{ + /// + /// Defines how a separated list breaks when it does not fit on a single line. + /// + private enum SeparatedListBreakStyle + { + /// + /// Each item appears on its own indented line, prefixed with the broken + /// separator (e.g. union members and directive locations using "| "). + /// The first item is also prefixed. The list opens on a new line. + /// + Leading, + + /// + /// The first item stays inline with the surrounding prelude. Subsequent + /// items appear on their own indented line. The separator is appended + /// after every non-last item (e.g. implements lists using " &"). + /// + Trailing + } + + /// + /// Writes a separated list of items, picking either a flat single-line layout + /// or a broken multi-line layout to match Prettier's group/ifBreak semantics. + /// + /// The items to write. + /// + /// The separator written between items in flat form (e.g. " & " or " | "). + /// + /// + /// The separator written in broken form. For + /// it is written before each item (e.g. "| "). For + /// it is written after every non-last item (e.g. " &"). + /// + /// + /// Whether the broken layout uses a leading or a trailing separator. + /// + /// + /// Text written between the surrounding prelude and the first item in flat form. + /// In broken form this is replaced by a newline plus indent. + /// + /// Writes a single item. + /// The output writer. + private void WriteSeparatedList( + IReadOnlyList items, + string flatSeparator, + string brokenSeparator, + SeparatedListBreakStyle breakStyle, + string flatLeading, + Action writeItem, + ISyntaxWriter writer) + { + if (items.Count == 0) + { + return; + } + + if (!_indented) + { + writer.Write(flatLeading); + writer.WriteMany(items, writeItem, flatSeparator); + return; + } + + var flatWidth = flatLeading.Length + + MeasureFlatSeparatedList(items, flatSeparator, writeItem); + + if (writer.Column + flatWidth <= _printWidth) + { + writer.Write(flatLeading); + writer.WriteMany(items, writeItem, flatSeparator); + return; + } + + if (breakStyle == SeparatedListBreakStyle.Leading) + { + writer.WriteLine(); + writer.Indent(); + + for (var i = 0; i < items.Count; i++) + { + if (i > 0) + { + writer.WriteLine(); + } + + writer.WriteIndent(); + writer.Write(brokenSeparator); + writeItem(items[i], writer); + } + + writer.Unindent(); + } + else + { + writer.Indent(); + + for (var i = 0; i < items.Count; i++) + { + if (i > 0) + { + writer.WriteIndent(); + } + + writeItem(items[i], writer); + + if (i < items.Count - 1) + { + writer.Write(brokenSeparator); + writer.WriteLine(); + } + } + + writer.Unindent(); + } + } + + private int MeasureFlatSeparatedList( + IReadOnlyList items, + string flatSeparator, + Action writeItem) + { + var writer = StringSyntaxWriter.Rent(); + + try + { + writer.WriteMany(items, writeItem, flatSeparator); + return writer.Column; + } + finally + { + StringSyntaxWriter.Return(writer); + } + } +} diff --git a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.Values.cs b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.Values.cs new file mode 100644 index 00000000000..2b417b2618f --- /dev/null +++ b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.Values.cs @@ -0,0 +1,266 @@ +namespace HotChocolate.Language.Utilities; + +public sealed partial class SyntaxSerializer +{ + private void WriteValue(IValueNode node, ISyntaxWriter writer) + { + switch (node.Kind) + { + case SyntaxKind.ListValue: + WriteListValue((ListValueNode)node, writer); + break; + + case SyntaxKind.ObjectValue: + WriteObjectValue((ObjectValueNode)node, writer); + break; + + default: + writer.WriteValue(node, indented: false); + break; + } + } + + private void WriteListValue(ListValueNode node, ISyntaxWriter writer) + { + if (!_indented || node.Items.Count == 0) + { + writer.WriteListValue(node, indented: false); + return; + } + + var flatWidth = MeasureFlatListValue(node); + + if (!ContainsBlockString(node) && writer.Column + flatWidth <= _printWidth) + { + writer.WriteListValue(node, indented: false); + return; + } + + writer.Write('['); + writer.Indent(); + + foreach (var item in node.Items) + { + writer.WriteLine(); + writer.WriteIndent(); + WriteValue(item, writer); + } + + writer.WriteLine(); + writer.Unindent(); + writer.WriteIndent(); + writer.Write(']'); + } + + private void WriteObjectValue(ObjectValueNode node, ISyntaxWriter writer) + { + if (node.Fields.Count == 0) + { + writer.Write("{}"); + return; + } + + if (!_indented) + { + writer.WriteObjectValue(node, indented: false); + return; + } + + var flatWidth = MeasureFlatObjectValue(node); + + if (!ContainsBlockString(node) && writer.Column + flatWidth <= _printWidth) + { + writer.Write("{ "); + + for (var i = 0; i < node.Fields.Count; i++) + { + if (i > 0) + { + writer.Write(", "); + } + + var field = node.Fields[i]; + writer.WriteName(field.Name); + writer.Write(": "); + writer.WriteValue(field.Value, indented: false); + } + + writer.Write(" }"); + return; + } + + writer.Write('{'); + writer.Indent(); + + foreach (var field in node.Fields) + { + writer.WriteLine(); + writer.WriteIndent(); + WriteObjectField(field, writer); + } + + writer.WriteLine(); + writer.Unindent(); + writer.WriteIndent(); + writer.Write('}'); + } + + private void WriteObjectField(ObjectFieldNode node, ISyntaxWriter writer) + { + writer.WriteName(node.Name); + writer.Write(": "); + WriteValue(node.Value, writer); + } + + private void WriteArgument(ArgumentNode node, ISyntaxWriter writer) + { + writer.WriteName(node.Name); + writer.Write(": "); + WriteValue(node.Value, writer); + } + + private int MeasureFlatListValue(ListValueNode node) + { + var writer = StringSyntaxWriter.Rent(); + + try + { + writer.WriteListValue(node, indented: false); + return writer.Column; + } + finally + { + StringSyntaxWriter.Return(writer); + } + } + + private int MeasureFlatObjectValue(ObjectValueNode node) + { + var writer = StringSyntaxWriter.Rent(); + + try + { + writer.Write("{ "); + + for (var i = 0; i < node.Fields.Count; i++) + { + if (i > 0) + { + writer.Write(", "); + } + + var field = node.Fields[i]; + writer.WriteName(field.Name); + writer.Write(": "); + writer.WriteValue(field.Value, indented: false); + } + + writer.Write(" }"); + return writer.Column; + } + finally + { + StringSyntaxWriter.Return(writer); + } + } + + private static bool ContainsBlockString(IValueNode? node) + { + switch (node) + { + case StringValueNode stringValue: + return stringValue.Block; + + case ListValueNode listValue: + for (var i = 0; i < listValue.Items.Count; i++) + { + if (ContainsBlockString(listValue.Items[i])) + { + return true; + } + } + return false; + + case ObjectValueNode objectValue: + for (var i = 0; i < objectValue.Fields.Count; i++) + { + if (ContainsBlockString(objectValue.Fields[i].Value)) + { + return true; + } + } + return false; + + default: + return false; + } + } + + private static bool DirectivesContainBlockString(IReadOnlyList directives) + { + for (var i = 0; i < directives.Count; i++) + { + if (ArgumentsContainBlockString(directives[i].Arguments)) + { + return true; + } + } + + return false; + } + + private static bool ArgumentsContainBlockString(IReadOnlyList arguments) + { + for (var i = 0; i < arguments.Count; i++) + { + if (ContainsBlockString(arguments[i].Value)) + { + return true; + } + } + + return false; + } + + private static bool ArgumentDefinitionsContainBlockString( + IReadOnlyList arguments) + { + for (var i = 0; i < arguments.Count; i++) + { + var argument = arguments[i]; + + if (argument.Description is { Block: true }) + { + return true; + } + + if (ContainsBlockString(argument.DefaultValue)) + { + return true; + } + } + + return false; + } + + private static bool VariableDefinitionsContainBlockString( + IReadOnlyList variableDefinitions) + { + for (var i = 0; i < variableDefinitions.Count; i++) + { + var variableDefinition = variableDefinitions[i]; + + if (variableDefinition.Description is { Block: true }) + { + return true; + } + + if (ContainsBlockString(variableDefinition.DefaultValue)) + { + return true; + } + } + + return false; + } +} diff --git a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.cs b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.cs index 5c74e2d9399..c20ff4e7a33 100644 --- a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.cs +++ b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.cs @@ -42,7 +42,7 @@ public void Serialize(ISyntaxNode node, ISyntaxWriter writer) VisitField((FieldNode)node, writer); break; case SyntaxKind.Argument: - writer.WriteArgument((ArgumentNode)node); + WriteArgument((ArgumentNode)node, writer); break; case SyntaxKind.FragmentSpread: VisitFragmentSpread((FragmentSpreadNode)node, writer); @@ -54,7 +54,7 @@ public void Serialize(ISyntaxNode node, ISyntaxWriter writer) VisitFragmentDefinition((FragmentDefinitionNode)node, writer); break; case SyntaxKind.Directive: - writer.WriteDirective((DirectiveNode)node); + WriteDirective((DirectiveNode)node, writer); break; case SyntaxKind.NamedType: case SyntaxKind.ListType: @@ -69,10 +69,10 @@ public void Serialize(ISyntaxNode node, ISyntaxWriter writer) case SyntaxKind.IntValue: case SyntaxKind.NullValue: case SyntaxKind.StringValue: - writer.WriteValue((IValueNode)node, _indented); + WriteValue((IValueNode)node, writer); break; case SyntaxKind.ObjectField: - writer.WriteObjectField((ObjectFieldNode)node, _indented); + WriteObjectField((ObjectFieldNode)node, writer); break; case SyntaxKind.SchemaDefinition: VisitSchemaDefinition((SchemaDefinitionNode)node, writer); diff --git a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxWriterExtensions.cs b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxWriterExtensions.cs index 49f93756d90..7b81439d046 100644 --- a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxWriterExtensions.cs +++ b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxWriterExtensions.cs @@ -147,13 +147,18 @@ public static void WriteStringValue(this ISyntaxWriter writer, StringValueNode n { if (node.Block) { - writer.Write("\"\"\""); - var lines = node.Value .Replace("\"\"\"", "\\\"\"\"") .Replace("\r", string.Empty) .Split('\n'); + if (lines.Length == 1) + { + lines[0] = lines[0].Trim(); + } + + writer.Write("\"\"\""); + foreach (var line in lines) { writer.WriteLine(); @@ -293,9 +298,15 @@ public static void WriteObjectValue(this ISyntaxWriter writer, ObjectValueNode n public static void WriteObjectValue(this ISyntaxWriter writer, ObjectValueNode node, bool indented) { + if (node.Fields.Count == 0) + { + writer.Write("{}"); + return; + } + writer.Write('{'); - if (indented && node.Fields.Count > 0) + if (indented) { writer.WriteLine(); writer.Indent(); diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/HotChocolate.Language.SyntaxTree.Tests.csproj b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/HotChocolate.Language.SyntaxTree.Tests.csproj index 93d64f8634e..e47924a26a9 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/HotChocolate.Language.SyntaxTree.Tests.csproj +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/HotChocolate.Language.SyntaxTree.Tests.csproj @@ -10,7 +10,7 @@ - + Always diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/PrettierParity/PrettierParityTests.cs b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/PrettierParity/PrettierParityTests.cs new file mode 100644 index 00000000000..8f62caa4a66 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/PrettierParity/PrettierParityTests.cs @@ -0,0 +1,45 @@ +using CookieCrumble; + +namespace HotChocolate.Language.SyntaxTree.Utilities.PrettierParity; + +public class PrettierParityTests +{ + [Theory] + [InlineData("lists/lists.graphql")] + [InlineData("objects/objects.graphql")] + [InlineData("arguments/hello.graphql")] + [InlineData("directive-decl/directive_decl.graphql")] // note: blank lines added between every top-level decl, AST does not preserve input grouping trivia + [InlineData("directives/directives.graphql")] // note: blank line between selections removed, AST does not preserve trivia + [InlineData("kitchen-sink/kitchen-sink.graphql")] // note: copyright comment removed, AST does not model comments + [InlineData("object-type-def/arguments.graphql")] + [InlineData("object-type-def/directives.graphql")] + [InlineData("object-type-def/extend.graphql")] + [InlineData("object-type-def/implements.graphql")] + [InlineData("object-type-def/input.graphql")] + [InlineData("object-type-def/object_type_def.graphql")] + [InlineData("interface/interface.graphql")] // note: copyright/section comments removed, AST does not model comments + [InlineData("interface/many-interfaces.graphql")] + [InlineData("enum/enum.graphql")] + [InlineData("scalar/scalar.graphql")] + [InlineData("union-types/union_types.graphql")] // note: trailing comment lines removed, AST does not model comments + [InlineData("fields/fields.graphql")] + [InlineData("fragments/fragments.graphql")] + [InlineData("variable-definitions/variable_definitions.graphql")] + [InlineData("hello/hello.graphql")] + [InlineData("deprecation/directives.graphql")] // note: header comment removed and blank lines added between every top-level decl, AST does not preserve trivia + [InlineData("type-extension-definition/type-extendsion-syntax.graphql")] + public void Format_Should_Match_Prettier(string fixture) + { + // arrange + var input = FileResource.Open($"PrettierParity/{fixture}"); + var expected = FileResource.Open( + $"PrettierParity/{fixture.Replace(".graphql", ".expected.graphql")}"); + + // act + var document = Utf8GraphQLParser.Parse(input); + var actual = document.ToString(indented: true) + Environment.NewLine; + + // assert + Assert.Equal(expected, actual, ignoreLineEndingDifferences: true); + } +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/SchemaSyntaxPrinterTests.cs b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/SchemaSyntaxPrinterTests.cs index a2159274fe2..5b25fb39034 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/SchemaSyntaxPrinterTests.cs +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/Utilities/SchemaSyntaxPrinterTests.cs @@ -798,4 +798,259 @@ public void Serialize_SchemaTypeExtensionDef_InOutShouldBeTheSame() // assert Assert.Equal(schema, result); } + + [Fact] + public void Format_Should_Inline_Short_List_Default_In_Directive_Definition() + { + // arrange + const string sdl = "directive @semanticNonNull(levels: [Int!] = [0]) on FIELD_DEFINITION"; + var document = Utf8GraphQLParser.Parse(sdl); + + // act + var actual = document.ToString(indented: true); + + // assert + Assert.Equal(sdl, actual); + } + + [Fact] + public void Format_Should_Break_Directive_Arguments_When_Too_Long() + { + // arrange + const string sdl = "type Foo @veryLongDirectiveName(firstArgumentName: \"firstValue\", " + + "secondArgumentName: \"secondValue\", thirdArgumentName: \"thirdValue\") { id: ID }"; + var document = Utf8GraphQLParser.Parse(sdl); + + // act + var actual = document.ToString(indented: true); + + // assert + actual.MatchInlineSnapshot( + """ + type Foo + @veryLongDirectiveName( + firstArgumentName: "firstValue" + secondArgumentName: "secondValue" + thirdArgumentName: "thirdValue" + ) { + id: ID + } + """); + } + + [Fact] + public void Serialize_SingleLineBlockString_ExpandsToThreeLines() + { + // arrange + const string sdl = "\"\"\"foo\"\"\" type Foo { bar: String }"; + var document = Utf8GraphQLParser.Parse(sdl); + + // act + var actual = document.ToString(indented: true); + + // assert + actual.MatchInlineSnapshot( + """" + """ + foo + """ + type Foo { + bar: String + } + """"); + } + + [Fact] + public void Serialize_SingleLineBlockString_TrimsLeadingAndTrailingWhitespace() + { + // arrange + const string sdl = "\"\"\" Customer \"\"\" type Foo { bar: String }"; + var document = Utf8GraphQLParser.Parse(sdl); + + // act + var actual = document.ToString(indented: true); + + // assert + actual.MatchInlineSnapshot( + """" + """ + Customer + """ + type Foo { + bar: String + } + """"); + } + + [Fact] + public void Serialize_MultiLineBlockString_RemainsMultiLine() + { + // arrange + const string sdl = "\"\"\"\nfoo\nbar\n\"\"\" type Foo { bar: String }"; + var document = Utf8GraphQLParser.Parse(sdl); + + // act + var actual = document.ToString(indented: true); + + // assert + actual.MatchInlineSnapshot( + "\"\"\"\nfoo\nbar\n\"\"\"\ntype Foo {\n bar: String\n}"); + } + + [Fact] + public void Serialize_EmptyBlockString_ExpandsToThreeLines() + { + // arrange + const string sdl = "\"\"\"\"\"\" type Foo { bar: String }"; + var document = Utf8GraphQLParser.Parse(sdl); + + // act + var actual = document.ToString(indented: true); + + // assert + actual.MatchInlineSnapshot( + "\"\"\"\n\n\"\"\"\ntype Foo {\n bar: String\n}"); + } + + [Fact] + public void Format_Should_Break_Implements_List_When_Too_Long() + { + // arrange + const string sdl = "type Foo implements InterfaceOne & InterfaceTwo & InterfaceThree " + + "& InterfaceFour & InterfaceFive & InterfaceSix { id: ID! }"; + var document = Utf8GraphQLParser.Parse(sdl); + + // act + var actual = document.ToString(indented: true); + + // assert + actual.MatchInlineSnapshot( + """ + type Foo implements InterfaceOne & + InterfaceTwo & + InterfaceThree & + InterfaceFour & + InterfaceFive & + InterfaceSix { + id: ID! + } + """); + } + + [Fact] + public void Format_Should_Break_Union_Members_When_Too_Long() + { + // arrange + const string sdl = "union LongUnion = MemberOne | MemberTwo | MemberThree " + + "| MemberFour | MemberFive | MemberSix | MemberSeven | MemberEight"; + var document = Utf8GraphQLParser.Parse(sdl); + + // act + var actual = document.ToString(indented: true); + + // assert + actual.MatchInlineSnapshot( + """ + union LongUnion = + | MemberOne + | MemberTwo + | MemberThree + | MemberFour + | MemberFive + | MemberSix + | MemberSeven + | MemberEight + """); + } + + [Fact] + public void Serialize_BlankLineOnlyBlockString_ExpandsToThreeLines() + { + // arrange + const string sdl = "\"\"\"\n\n\"\"\" type Foo { bar: String }"; + var document = Utf8GraphQLParser.Parse(sdl); + + // act + var actual = document.ToString(indented: true); + + // assert + actual.MatchInlineSnapshot( + "\"\"\"\n\n\"\"\"\ntype Foo {\n bar: String\n}"); + } + + [Fact] + public void Format_Should_Break_Standalone_Directive_When_Too_Long() + { + // arrange + var directive = new DirectiveNode( + "veryLongDirectiveName", + new ArgumentNode("firstArgumentName", "firstValue"), + new ArgumentNode("secondArgumentName", "secondValue"), + new ArgumentNode("thirdArgumentName", "thirdValue")); + + // act + var actual = directive.ToString(indented: true); + + // assert + actual.MatchInlineSnapshot( + """ + @veryLongDirectiveName( + firstArgumentName: "firstValue" + secondArgumentName: "secondValue" + thirdArgumentName: "thirdValue" + ) + """); + } + + [Fact] + public void Format_Should_Break_Standalone_Argument_List_Value_When_Too_Long() + { + // arrange + var argument = new ArgumentNode( + new NameNode("items"), + new ListValueNode( + new StringValueNode("firstReallyLongStringValue"), + new StringValueNode("secondReallyLongStringValue"), + new StringValueNode("thirdReallyLongStringValue"))); + + // act + var actual = argument.ToString(indented: true); + + // assert + actual.MatchInlineSnapshot( + """ + items: [ + "firstReallyLongStringValue" + "secondReallyLongStringValue" + "thirdReallyLongStringValue" + ] + """); + } + + [Fact] + public void Format_Should_Break_Directive_Locations_When_Too_Long() + { + // arrange + const string sdl = "directive @manyLocations on QUERY | MUTATION | SUBSCRIPTION " + + "| FIELD | FRAGMENT_DEFINITION | FRAGMENT_SPREAD | INLINE_FRAGMENT " + + "| VARIABLE_DEFINITION"; + var document = Utf8GraphQLParser.Parse(sdl); + + // act + var actual = document.ToString(indented: true); + + // assert + actual.MatchInlineSnapshot( + """ + directive @manyLocations on + | QUERY + | MUTATION + | SUBSCRIPTION + | FIELD + | FRAGMENT_DEFINITION + | FRAGMENT_SPREAD + | INLINE_FRAGMENT + | VARIABLE_DEFINITION + """); + } } 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 e22c2c72103..12092549205 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 @@ -7,7 +7,7 @@ query queryName($foo: ComplexType, $site: Site = MOBILE) { id alias: field1(first: 10, after: $foo) @include(if: $foo) { id - ... frag + ...frag } } } @@ -45,9 +45,16 @@ subscription StoryLikeSubscription($input: StoryLikeSubscribeInput) { "Fragment description" fragment frag on Friend { - foo(size: $size, bar: $b, obj: { key: "value", block: """ + foo( + size: $size + bar: $b + obj: { + key: "value" + block: """ block string uses \""" - """ }) + """ + } + ) } { 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 e22c2c72103..12092549205 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 @@ -7,7 +7,7 @@ query queryName($foo: ComplexType, $site: Site = MOBILE) { id alias: field1(first: 10, after: $foo) @include(if: $foo) { id - ... frag + ...frag } } } @@ -45,9 +45,16 @@ subscription StoryLikeSubscription($input: StoryLikeSubscribeInput) { "Fragment description" fragment frag on Friend { - foo(size: $size, bar: $b, obj: { key: "value", block: """ + foo( + size: $size + bar: $b + obj: { + key: "value" + block: """ block string uses \""" - """ }) + """ + } + ) } { 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 e22c2c72103..12092549205 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 @@ -7,7 +7,7 @@ query queryName($foo: ComplexType, $site: Site = MOBILE) { id alias: field1(first: 10, after: $foo) @include(if: $foo) { id - ... frag + ...frag } } } @@ -45,9 +45,16 @@ subscription StoryLikeSubscription($input: StoryLikeSubscribeInput) { "Fragment description" fragment frag on Friend { - foo(size: $size, bar: $b, obj: { key: "value", block: """ + foo( + size: $size + bar: $b + obj: { + key: "value" + block: """ block string uses \""" - """ }) + """ + } + ) } { diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/arguments/hello.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/arguments/hello.expected.graphql new file mode 100644 index 00000000000..36b9e9c1060 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/arguments/hello.expected.graphql @@ -0,0 +1,10 @@ +{ + short(var: $var, int: 5, float: 5.6, bool: true, string: "hello world!") + long( + var: $thisIsAReallyLongVariableNameRight + int: 52342342342 + float: 5.6 + bool: true + string: "hello world this is a very long string!" + ) +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/arguments/hello.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/arguments/hello.graphql new file mode 100644 index 00000000000..8c6b6509991 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/arguments/hello.graphql @@ -0,0 +1,4 @@ +{ + short(var: $var, int: 5, float: 5.6, bool: true, string: "hello world!") + long(var: $thisIsAReallyLongVariableNameRight, int: 52342342342, float: 5.6, bool: true, string: "hello world this is a very long string!") +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/deprecation/directives.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/deprecation/directives.expected.graphql new file mode 100644 index 00000000000..67358bce0e5 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/deprecation/directives.expected.graphql @@ -0,0 +1,72 @@ +type Query { + someField( + nonDeprecated: String + deprecated: String @deprecated(reason: "Removed in 1.0") + deprecatedWithEmptyReason: String @deprecated(reason: "") + ): String +} + +type Query { + someField( + nonDeprecated: String + deprecated: String @deprecated(reason: "Removed in 1.0") + ): String +} + +input SomeInputObject { + nonDeprecated: String + deprecated: String @deprecated(reason: "Removed in 1.0") + deprecatedWithEmptyReason: String @deprecated(reason: "") +} + +type Query { + someField(someArg: SomeInputObject): String +} + +input SomeInputObject { + nonDeprecated: String + deprecated: String @deprecated(reason: "Removed in 1.0") +} + +type Query { + someField(someArg: SomeInputObject): String +} + +type Query { + field(arg: SomeInputObject): String +} + +input SomeInputObject { + badField: String! @deprecated + optionalField: String @deprecated + anotherOptionalField: String! = "" @deprecated +} + +directive @BadDirective( + badArg: String! @deprecated + optionalArg: String @deprecated + anotherOptionalArg: String! = "" @deprecated +) on FIELD + +type Query { + test( + badArg: String! @deprecated + optionalArg: String @deprecated + anotherOptionalArg: String! = "" @deprecated + ): String +} + +input MyInput { + oldInput: String @deprecated + otherInput: String @deprecated(reason: "Use newInput") + newInput: String +} + +type Query { + field1: String @deprecated + field2: Int @deprecated(reason: "Because I said so") + enum: MyEnum + field3(oldArg: String @deprecated, arg: String): String + field4(oldArg: String @deprecated(reason: "Why not?"), arg: String): String + field5(arg: MyInput): String +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/deprecation/directives.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/deprecation/directives.graphql new file mode 100644 index 00000000000..1e24cbbfae2 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/deprecation/directives.graphql @@ -0,0 +1,71 @@ +# https://github.com/graphql/graphql-js/pull/2733/files + +type Query { + someField( + nonDeprecated: String + deprecated: String @deprecated(reason: "Removed in 1.0") + deprecatedWithEmptyReason: String @deprecated(reason: "") + ): String +} + + +type Query { + someField( + nonDeprecated: String + deprecated: String @deprecated(reason: "Removed in 1.0") + ): String +} + +input SomeInputObject { + nonDeprecated: String + deprecated: String @deprecated(reason: "Removed in 1.0") + deprecatedWithEmptyReason: String @deprecated(reason: "") +} +type Query { + someField(someArg: SomeInputObject): String +} + +input SomeInputObject { + nonDeprecated: String + deprecated: String @deprecated(reason: "Removed in 1.0") +} +type Query { + someField(someArg: SomeInputObject): String +} + +type Query { + field(arg: SomeInputObject): String +} +input SomeInputObject { + badField: String! @deprecated + optionalField: String @deprecated + anotherOptionalField: String! = "" @deprecated +} + +directive @BadDirective( + badArg: String! @deprecated + optionalArg: String @deprecated + anotherOptionalArg: String! = "" @deprecated +) on FIELD +type Query { + test( + badArg: String! @deprecated + optionalArg: String @deprecated + anotherOptionalArg: String! = "" @deprecated + ): String +} + +input MyInput { + oldInput: String @deprecated + otherInput: String @deprecated(reason: "Use newInput") + newInput: String +} + +type Query { + field1: String @deprecated + field2: Int @deprecated(reason: "Because I said so") + enum: MyEnum + field3(oldArg: String @deprecated, arg: String): String + field4(oldArg: String @deprecated(reason: "Why not?"), arg: String): String + field5(arg: MyInput): String +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/directive-decl/directive_decl.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/directive-decl/directive_decl.expected.graphql new file mode 100644 index 00000000000..7c5e818d644 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/directive-decl/directive_decl.expected.graphql @@ -0,0 +1,21 @@ +directive @a on QUERY + +directive @a(as: String) on QUERY + +directive @a(as: String = 1) on QUERY + +directive @a(as: String, b: Int!) on QUERY + +directive @a(as: String! = 1 @deprecated) on QUERY + +directive @a(as: String! = 1 @deprecated) on QUERY | MUTATION + +directive @a(as: String! = 1 @deprecated) repeatable on QUERY | MUTATION + +directive @a on QUERY + +directive @a repeatable on QUERY + +directive @a(as: String) on QUERY + +directive @a(as: String = 1) on QUERY diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/directive-decl/directive_decl.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/directive-decl/directive_decl.graphql new file mode 100644 index 00000000000..318e0552bc3 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/directive-decl/directive_decl.graphql @@ -0,0 +1,18 @@ +directive @a on QUERY +directive @a(as: String) on QUERY +directive @a(as: String = 1) on QUERY +directive @a(as: String, b: Int!) on QUERY +directive @a(as: String! = 1 @deprecated) on QUERY +directive @a(as: String! = 1 @deprecated) on QUERY | MUTATION +directive @a(as: String! = 1 @deprecated) repeatable on QUERY | MUTATION + +directive @a on QUERY +directive @a repeatable on QUERY + + +directive @a(as: String) on QUERY + + + + +directive @a(as: String = 1) on QUERY diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/directives/directives.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/directives/directives.expected.graphql new file mode 100644 index 00000000000..d33ef08b765 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/directives/directives.expected.graphql @@ -0,0 +1,25 @@ +query MyQuery @directive(arg: 5) { + field @skip(if: true) @nope + otherField + ...fragmentSpread + @include(if: ["this isn't even a boolean", "wow, that's really odd"]) +} + +fragment YouCanHaveDirectivesHereToo on SomeType @yesReally(what: "yes") { + fields + ... on AType @what(sup: "yo") @otherDirective { + goodbye + } + ... @notEvenATypeHere(args: [1, 2, 3]) { + hello + } + thisFieldHasALotOfDirectives + @thisIsthefirst + @thisIsTheSecond + @thisIsTheThird + @thisIstheFourthWillBeTooLongForSure(and: "it has arguments as well") +} + +query QueryWVars($x: String) @directive { + hey +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/directives/directives.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/directives/directives.graphql new file mode 100644 index 00000000000..6a28c061867 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/directives/directives.graphql @@ -0,0 +1,20 @@ +query MyQuery @directive( + arg: 5 +) { + field + @skip(if: true) @nope + otherField + ...fragmentSpread, @include(if: ["this isn't even a boolean", "wow, that's really odd",,,,,]) +} + +fragment YouCanHaveDirectivesHereToo on SomeType @yesReally(what: "yes") { + fields + ... on AType @what(sup: "yo") @otherDirective { goodbye} + ... @notEvenATypeHere(args: [1, 2, 3]) { + hello + } + + thisFieldHasALotOfDirectives @thisIsthefirst @thisIsTheSecond @thisIsTheThird @thisIstheFourthWillBeTooLongForSure (and: "it has arguments as well") +} + +query QueryWVars($x: String) @directive { hey } diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/enum/enum.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/enum/enum.expected.graphql new file mode 100644 index 00000000000..16189a90970 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/enum/enum.expected.graphql @@ -0,0 +1,5 @@ +enum State { + PENDING + VISIBLE + ARCHIVED +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/enum/enum.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/enum/enum.graphql new file mode 100644 index 00000000000..16189a90970 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/enum/enum.graphql @@ -0,0 +1,5 @@ +enum State { + PENDING + VISIBLE + ARCHIVED +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/fields/fields.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/fields/fields.expected.graphql new file mode 100644 index 00000000000..67c7c337a4f --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/fields/fields.expected.graphql @@ -0,0 +1,14 @@ +{ + posts { + title + votes + author { + firstName + posts { + author { + firstName + } + } + } + } +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/fields/fields.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/fields/fields.graphql new file mode 100644 index 00000000000..6e9cd37cef4 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/fields/fields.graphql @@ -0,0 +1,4 @@ +{ + posts {, title, votes, author {, firstName, posts {, author { firstName } } + }} +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/fragments/fragments.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/fragments/fragments.expected.graphql new file mode 100644 index 00000000000..bd189a666ad --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/fragments/fragments.expected.graphql @@ -0,0 +1,15 @@ +{ + field + ...XYZ + ... on TheType { + ...AFragment + ... { + noTypeCondition + } + } +} + +fragment XYZ on ABC { + field + ...AFragment +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/fragments/fragments.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/fragments/fragments.graphql new file mode 100644 index 00000000000..6b1a89305e0 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/fragments/fragments.graphql @@ -0,0 +1,15 @@ +{ + field + ... XYZ + ... on TheType { + ...AFragment + ... { + noTypeCondition + } + } +} + +fragment XYZ on ABC { + field + ...AFragment +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/hello/hello.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/hello/hello.expected.graphql new file mode 100644 index 00000000000..cec7c68e798 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/hello/hello.expected.graphql @@ -0,0 +1,5 @@ +{ + project(name: "GraphQL") { + tagline + } +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/hello/hello.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/hello/hello.graphql new file mode 100644 index 00000000000..cec7c68e798 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/hello/hello.graphql @@ -0,0 +1,5 @@ +{ + project(name: "GraphQL") { + tagline + } +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/interface/interface.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/interface/interface.expected.graphql new file mode 100644 index 00000000000..c14172dbf5d --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/interface/interface.expected.graphql @@ -0,0 +1,34 @@ +interface Actor { + id: ID + name: String +} + +interface Resource implements Node { + id: ID! + url: String +} + +interface Resource implements Node { + id: ID! + url: String +} + +interface Image implements Resource & Node { + id: ID! + url: String + thumbnail: String +} + +interface Node implements Named & Node { + id: ID! + name: String +} + +interface Named implements Node & Named { + id: ID! + name: String +} + +extend interface Bar implements A & B & C { + two(argument: InputType!): Type +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/interface/interface.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/interface/interface.graphql new file mode 100644 index 00000000000..5ac6a0c05ee --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/interface/interface.graphql @@ -0,0 +1,43 @@ +# https://github.com/graphql/graphql-spec/blob/master/spec/Section%203%20--%20Type%20System.md#interfaces + +interface Actor { + id: ID + name: String +} + +interface Resource implements Node +{ + id: ID! + url: String +} + +interface Resource implements +Node { + id: ID! + url: String +} + +interface Image implements Resource +& Node { + id: ID! + url: String + thumbnail: String +} + +interface Node implements Named & +Node { + id: ID! + name: String +} + +interface Named implements +Node & Named { + id: ID! + name: String +} + +# `InterfaceTypeExtension` +extend interface Bar implements +A& B & C { + two(argument: InputType!): Type +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/interface/many-interfaces.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/interface/many-interfaces.expected.graphql new file mode 100644 index 00000000000..f6d4e6da561 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/interface/many-interfaces.expected.graphql @@ -0,0 +1,8 @@ +type Foo implements InterfaceOne & + InterfaceTwo & + InterfaceThree & + InterfaceFour & + InterfaceFive & + InterfaceSix { + id: ID! +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/interface/many-interfaces.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/interface/many-interfaces.graphql new file mode 100644 index 00000000000..fe9bf695297 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/interface/many-interfaces.graphql @@ -0,0 +1,3 @@ +type Foo implements InterfaceOne & InterfaceTwo & InterfaceThree & InterfaceFour & InterfaceFive & InterfaceSix { + id: ID! +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/kitchen-sink/kitchen-sink.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/kitchen-sink/kitchen-sink.expected.graphql new file mode 100644 index 00000000000..4702787552f --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/kitchen-sink/kitchen-sink.expected.graphql @@ -0,0 +1,59 @@ +query queryName($foo: ComplexType, $site: Site = MOBILE) { + whoever123is: node(id: [123, 456]) { + id + ... on User @defer { + field2 { + id + alias: field1(first: 10, after: $foo) @include(if: $foo) { + id + ...frag + } + } + } + ... @skip(unless: $foo) { + id + } + ... { + id + } + } +} + +mutation likeStory { + like(story: 123) @defer { + story { + id + } + } +} + +subscription StoryLikeSubscription($input: StoryLikeSubscribeInput) { + storyLikeSubscribe(input: $input) { + story { + likers { + count + } + likeSentence { + text + } + } + } +} + +fragment frag on Friend { + foo( + size: $size + bar: $b + obj: { + key: "value" + block: """ + block string uses \""" + """ + } + ) +} + +{ + unnamed(truthy: true, falsey: false, nullish: null) + query +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/kitchen-sink/kitchen-sink.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/kitchen-sink/kitchen-sink.graphql new file mode 100644 index 00000000000..7b7908a46b3 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/kitchen-sink/kitchen-sink.graphql @@ -0,0 +1,57 @@ +# Copyright (c) 2015-present, Facebook, Inc. +# +# This source code is licensed under the MIT license found in the +# LICENSE file in the root directory of this source tree. + +query queryName($foo: ComplexType, $site: Site = MOBILE) { + whoever123is: node(id: [123, 456]) { + id , + ... on User @defer { + field2 { + id , + alias: field1(first:10, after:$foo,) @include(if: $foo) { + id, + ...frag + } + } + } + ... @skip(unless: $foo) { + id + } + ... { + id + } + } +} + +mutation likeStory { + like(story: 123) @defer { + story { + id + } + } +} + +subscription StoryLikeSubscription($input: StoryLikeSubscribeInput) { + storyLikeSubscribe(input: $input) { + story { + likers { + count + } + likeSentence { + text + } + } + } +} + +fragment frag on Friend { + foo(size: $size, bar: $b, obj: {key: "value", block: """ + block string uses \""" + """}) +} + +{ + unnamed(truthy: true, falsey: false, nullish: null), + query +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/lists/lists.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/lists/lists.expected.graphql new file mode 100644 index 00000000000..5dd0bbc2e8e --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/lists/lists.expected.graphql @@ -0,0 +1,10 @@ +{ + shortWithList(list: [1, 2, 3]) + longWithList( + list: [ + "hello world this is a very long string!" + "hello world this is a very long string!" + "hello world this is a very long string!" + ] + ) +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/lists/lists.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/lists/lists.graphql new file mode 100644 index 00000000000..099d2bbad65 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/lists/lists.graphql @@ -0,0 +1,4 @@ +{ + shortWithList(list: [1, 2, 3]) + longWithList(list: ["hello world this is a very long string!","hello world this is a very long string!", "hello world this is a very long string!"]) +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/arguments.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/arguments.expected.graphql new file mode 100644 index 00000000000..1d5e903d9b2 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/arguments.expected.graphql @@ -0,0 +1,3 @@ +type Video { + playable_url(quality: String, preferred: String): Url +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/arguments.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/arguments.graphql new file mode 100644 index 00000000000..1d5e903d9b2 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/arguments.graphql @@ -0,0 +1,3 @@ +type Video { + playable_url(quality: String, preferred: String): Url +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/directives.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/directives.expected.graphql new file mode 100644 index 00000000000..195b829bba1 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/directives.expected.graphql @@ -0,0 +1,3 @@ +type PokemonType { + pokemon_type: String @mock(value: "Electric") +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/directives.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/directives.graphql new file mode 100644 index 00000000000..195b829bba1 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/directives.graphql @@ -0,0 +1,3 @@ +type PokemonType { + pokemon_type: String @mock(value: "Electric") +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/extend.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/extend.expected.graphql new file mode 100644 index 00000000000..09e9b610dac --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/extend.expected.graphql @@ -0,0 +1,3 @@ +extend type Feedback { + custom_int: Int +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/extend.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/extend.graphql new file mode 100644 index 00000000000..09e9b610dac --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/extend.graphql @@ -0,0 +1,3 @@ +extend type Feedback { + custom_int: Int +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/implements.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/implements.expected.graphql new file mode 100644 index 00000000000..799c725da0b --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/implements.expected.graphql @@ -0,0 +1,3 @@ +type VRMConversation implements Node & Entity @foo { + a: Int +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/implements.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/implements.graphql new file mode 100644 index 00000000000..d12fc47d4af --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/implements.graphql @@ -0,0 +1,3 @@ +type VRMConversation implements Node& Entity @foo { + a: Int +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/input.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/input.expected.graphql new file mode 100644 index 00000000000..6782b9b4931 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/input.expected.graphql @@ -0,0 +1,4 @@ +input Params { + app_id: ID! + key_hash: String! +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/input.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/input.graphql new file mode 100644 index 00000000000..6782b9b4931 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/input.graphql @@ -0,0 +1,4 @@ +input Params { + app_id: ID! + key_hash: String! +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/object_type_def.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/object_type_def.expected.graphql new file mode 100644 index 00000000000..ce8c7eff763 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/object_type_def.expected.graphql @@ -0,0 +1,4 @@ +type FeedHomeStories { + debug_info: String + query_title: String +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/object_type_def.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/object_type_def.graphql new file mode 100644 index 00000000000..ce8c7eff763 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/object-type-def/object_type_def.graphql @@ -0,0 +1,4 @@ +type FeedHomeStories { + debug_info: String + query_title: String +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/objects/objects.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/objects/objects.expected.graphql new file mode 100644 index 00000000000..4a629299f71 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/objects/objects.expected.graphql @@ -0,0 +1,11 @@ +{ + shortWithObj(obj: { hello: "world", x: 5 }) + multilineObj(obj: { hello: "world", x: 5 }) + longWithObj( + obj: { + longString: "hello world this is a very long string!" + list: [1, 2, 3, 4, 5, 6, 7] + } + ) + emptyObj(arg: {}) +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/objects/objects.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/objects/objects.graphql new file mode 100644 index 00000000000..d52152c361e --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/objects/objects.graphql @@ -0,0 +1,9 @@ +{ + shortWithObj(obj: { hello: "world", x: 5 }) + multilineObj(obj: { + hello: "world", + x: 5 + }) + longWithObj(obj: { ,,longString: "hello world this is a very long string!", list: [1, 2, 3, 4, 5, 6, 7] }) + emptyObj(arg: {}) +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/scalar/scalar.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/scalar/scalar.expected.graphql new file mode 100644 index 00000000000..e999eb8c8ee --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/scalar/scalar.expected.graphql @@ -0,0 +1 @@ +scalar Color @deprecated diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/scalar/scalar.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/scalar/scalar.graphql new file mode 100644 index 00000000000..e999eb8c8ee --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/scalar/scalar.graphql @@ -0,0 +1 @@ +scalar Color @deprecated diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/type-extension-definition/type-extendsion-syntax.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/type-extension-definition/type-extendsion-syntax.expected.graphql new file mode 100644 index 00000000000..4b67be47701 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/type-extension-definition/type-extendsion-syntax.expected.graphql @@ -0,0 +1,8 @@ +type User { + name: String + birthday: Int +} + +extend type User { + age: Int +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/type-extension-definition/type-extendsion-syntax.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/type-extension-definition/type-extendsion-syntax.graphql new file mode 100644 index 00000000000..4b67be47701 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/type-extension-definition/type-extendsion-syntax.graphql @@ -0,0 +1,8 @@ +type User { + name: String + birthday: Int +} + +extend type User { + age: Int +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/union-types/union_types.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/union-types/union_types.expected.graphql new file mode 100644 index 00000000000..b4ee776afb6 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/union-types/union_types.expected.graphql @@ -0,0 +1,49 @@ +union myUnion = ATypeName | ASecondTypeName + +union tooLongNameeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee = + | A + | B + +union mySecondUnion = ATypeName | ASecondTypeName | AThirdTypeName + +union myThirdUnion = + | AVeryVeryVeryLongNamedTypeName + | ASecondVeryVeryVeryLongedNameTypeName + +union longUnion = + | A + | B + | C + | D + | E + | F + | G + | H + | I + | J + | K + | L + | A + | B + | C + | D + | E + | F + | G + | H + | I + | J + | K + | L + +union SearchResult = + | Conference + | Festival + | Concert + | Venue + | Conference + | Festival + | Concert + | Venue + +union union = B | C | D diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/union-types/union_types.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/union-types/union_types.graphql new file mode 100644 index 00000000000..fdbeac6d8f6 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/union-types/union_types.graphql @@ -0,0 +1,15 @@ +union myUnion = ATypeName | ASecondTypeName + +union tooLongNameeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee = A | B + +union mySecondUnion = ATypeName | ASecondTypeName | AThirdTypeName + +union myThirdUnion = AVeryVeryVeryLongNamedTypeName | ASecondVeryVeryVeryLongedNameTypeName + +union longUnion = A | B | C | D | E | F | G | H | I | J | K | L | A | B | C | D | E | F | G | H | I | J | K | L + +union SearchResult = Conference| Festival | Concert | Venue | Conference| Festival | Concert | Venue + +# comment +# comment2 +union union = B | C | D \ No newline at end of file diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/variable-definitions/variable_definitions.expected.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/variable-definitions/variable_definitions.expected.graphql new file mode 100644 index 00000000000..e0bb4afa5b1 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/variable-definitions/variable_definitions.expected.graphql @@ -0,0 +1,34 @@ +query short($foo: ComplexType, $site: Site = MOBILE, $nonNull: Int!) { + hello +} + +query long( + $foo: ComplexType + $site: Float = 124241.12312 + $bar: String = "Long string here" + $arg: String = "Hello world!" + $nonNull: String! +) { + hello +} + +query lists($foo: [Int], $bar: [Int!], $arg: [Int!]!) { + ok +} + +query listslong( + $foo: [String] + $bar: [String!] + $arg: [Int!]! + $veryLongName: [Int!] +) { + ok +} + +query withvariabledirective($foo: Int @directive) { + ok +} + +query withvariabledirectives($foo: Int @directive @another) { + ok +} diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/variable-definitions/variable_definitions.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/variable-definitions/variable_definitions.graphql new file mode 100644 index 00000000000..7c46d9e0768 --- /dev/null +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__resources__/PrettierParity/variable-definitions/variable_definitions.graphql @@ -0,0 +1,25 @@ +query short($foo:ComplexType, $site : Site = MOBILE, $nonNull: Int!) { + hello +} + +query long($foo: ComplexType, $site: Float = 124241.12312, +$bar: String = "Long string here", $arg: String = "Hello world!",,,,, +$nonNull: String!) { + hello +} + +query lists($foo: [Int ], $bar: [Int!], $arg: [ Int! ]!) { + ok +} + +query listslong($foo: [String ], $bar: [String!], $arg: [ Int! ]!, $veryLongName: [ Int! ]) { + ok +} + +query withvariabledirective($foo: Int @directive) { + ok +} + +query withvariabledirectives($foo: Int @directive @another) { + ok +} 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 60c3af166eb..58a15150928 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,7 @@ -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 +directive @deprecated(reason: String = "No longer supported") on + | FIELD_DEFINITION + | ENUM_VALUE diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.FragmentWithDirectives_Indented_MatchesSnapshot.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.FragmentWithDirectives_Indented_MatchesSnapshot.graphql index 683bff27555..20d877a3483 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.FragmentWithDirectives_Indented_MatchesSnapshot.graphql +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.FragmentWithDirectives_Indented_MatchesSnapshot.graphql @@ -6,6 +6,6 @@ fragment UserFields on User @custom(value: "test") { { user { - ... UserFields @defer + ...UserFields @defer } } diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.ListValue_Indented_MatchesSnapshot.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.ListValue_Indented_MatchesSnapshot.graphql index 7d18f9284f5..3a351928fbc 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.ListValue_Indented_MatchesSnapshot.graphql +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.ListValue_Indented_MatchesSnapshot.graphql @@ -1,11 +1 @@ -[ - { - a: 1, - b: 2 - }, - { - c: 3, - d: 4 - }, - 5 -] +[{ a: 1, b: 2 }, { c: 3, d: 4 }, 5] diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.ObjectValue_Indented_MatchesSnapshot.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.ObjectValue_Indented_MatchesSnapshot.graphql index c9606b60719..07b2989cbed 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.ObjectValue_Indented_MatchesSnapshot.graphql +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/SyntaxWriterTests.ObjectValue_Indented_MatchesSnapshot.graphql @@ -1,7 +1 @@ -{ - enum: Foo, - enum2: Bar, - nested: { - inner: "value" - } -} +{ enum: Foo, enum2: Bar, nested: { inner: "value" } } diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/ValueParserTests.cs b/src/HotChocolate/Language/test/Language.Tests/Parser/ValueParserTests.cs index 26ab7416e79..2e189d3bc46 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/ValueParserTests.cs +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/ValueParserTests.cs @@ -43,6 +43,19 @@ public void ZeroZeroIsNotAllowed() Assert.Throws(Action); } + [Fact] + public void ParseSingleLineBlockString_Should_Preserve_Block_Flag() + { + // arrange + // act + var valueNode = ParseValue("\"\"\"foo\"\"\""); + + // assert + var stringValue = Assert.IsType(valueNode); + Assert.Equal("foo", stringValue.Value); + Assert.True(stringValue.Block); + } + private static IValueNode ParseValue(string value) => Utf8GraphQLParser.Syntax.ParseValueLiteral(value, true); 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 c24ff3bd31f..9e466cef07e 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 @@ -9,7 +9,7 @@ query queryName($foo: ComplexType, $site: Site = MOBILE) { id alias: field1(first: 10, after: $foo) @include(if: $foo) { id - ... frag + ...frag } } } @@ -47,9 +47,16 @@ subscription StoryLikeSubscription($input: StoryLikeSubscribeInput) { "Fragment description" fragment frag on Friend { - foo(size: $size, bar: $b, obj: { key: "value", block: """ + foo( + size: $size + bar: $b + obj: { + key: "value" + block: """ block string uses \""" - """ }) + """ + } + ) } { 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 0fe483f2d15..025bec18f97 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,18 +14,16 @@ 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 + 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] = [ - "string", - "string" - ]): String - six(argument: InputType = { - key: "value" - }): Type + five(argument: [String] = ["string", "string"]): String + six(argument: InputType = { key: "value" }): Type seven(argument: Int): Type } @@ -72,11 +70,11 @@ union AnnotatedUnion @onUnion = A | B union AnnotatedUnionTwo @onUnion = A | B -union UndefinedUnion = +union UndefinedUnion = extend union Feed = Photo | Video -extend union Feed @onUnion = +extend union Feed @onUnion = scalar CustomScalar @@ -129,7 +127,10 @@ extend input InputType @onInputObject { directive @skip(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT -directive @skip2(if: Boolean!) repeatable on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT +directive @skip2(if: Boolean!) repeatable on + | FIELD + | FRAGMENT_SPREAD + | INLINE_FRAGMENT directive @include(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT diff --git a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/QueryParserTests.IntrospectionQuery.graphql b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/QueryParserTests.IntrospectionQuery.graphql index bee3f5db7cd..5a85fdbd377 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/QueryParserTests.IntrospectionQuery.graphql +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/QueryParserTests.IntrospectionQuery.graphql @@ -10,13 +10,13 @@ query IntrospectionQuery { name } types { - ... FullType + ...FullType } directives { name description args { - ... InputValue + ...InputValue } onOperation onFragment @@ -33,19 +33,19 @@ fragment FullType on __Type { name description args { - ... InputValue + ...InputValue } type { - ... TypeRef + ...TypeRef } isDeprecated deprecationReason } inputFields { - ... InputValue + ...InputValue } interfaces { - ... TypeRef + ...TypeRef } enumValues(includeDeprecated: true) { name @@ -54,7 +54,7 @@ fragment FullType on __Type { deprecationReason } possibleTypes { - ... TypeRef + ...TypeRef } } @@ -62,7 +62,7 @@ fragment InputValue on __InputValue { name description type { - ... TypeRef + ...TypeRef } defaultValue } 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 e22c2c72103..12092549205 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 @@ -7,7 +7,7 @@ query queryName($foo: ComplexType, $site: Site = MOBILE) { id alias: field1(first: 10, after: $foo) @include(if: $foo) { id - ... frag + ...frag } } } @@ -45,9 +45,16 @@ subscription StoryLikeSubscription($input: StoryLikeSubscribeInput) { "Fragment description" fragment frag on Friend { - foo(size: $size, bar: $b, obj: { key: "value", block: """ + foo( + size: $size + bar: $b + obj: { + key: "value" + block: """ block string uses \""" - """ }) + """ + } + ) } { 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 4b752cf4f14..b3bad2473b5 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,9 +744,12 @@ type SalesforceOrgLifecycleNotification { Status Code """ statusCode: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! + customFields( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! } type SalesforceOrgLifecycleNotificationCreatedSubscriptionPayload { @@ -1731,9 +1734,12 @@ type SalesforceAssetTokenEvent { Actor Token Payload """ actorTokenPayload: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! + customFields( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! } type SalesforceAssetTokenEventCreatedSubscriptionPayload { @@ -2953,45 +2959,101 @@ 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( + """ + 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." + ) } input SignoutServicesData { @@ -3360,83 +3422,151 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 { @@ -8706,49 +8836,67 @@ type GitHubMutation { Create an Issue """ createIssueTemp(input: GitHubCreateIssueTempInput!): GitHubCreateIssueTempResponsePayload! - @deprecated(reason: "Temporary mutation until GitHub implemements their own createIssue mutation.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @deprecated( + reason: "Temporary mutation until GitHub implemements their own mergePullRequest mutation." + ) """ Make a REST API call to the GitHub API. @@ -11497,7 +11645,9 @@ type BrexCredentialSuccessResult { """ """ -union BrexCredentialAuthenticationResult = BrexCredentialSuccessResult | BrexCredentialRedirectResult +union BrexCredentialAuthenticationResult = + | BrexCredentialSuccessResult + | BrexCredentialRedirectResult """ @@ -11809,7 +11959,9 @@ type BrexRootMutationType { """ cDa(input: BrexCDaInput!): BrexCDaPayload - @deprecated(reason: "Use 'onboardingCreateApplication' instead, passing in the blueprint name:'gemini'") + @deprecated( + reason: "Use 'onboardingCreateApplication' instead, passing in the blueprint name:'gemini'" + ) """ """ @@ -12018,7 +12170,9 @@ type BrexRootMutationType { """ createDepositsApplication(input: BrexCreateDepositsApplicationInput!): BrexCreateDepositsApplicationPayload - @deprecated(reason: "Use 'onboardingCreateApplication' instead, passing in the blueprint name:'gemini'") + @deprecated( + reason: "Use 'onboardingCreateApplication' instead, passing in the blueprint name:'gemini'" + ) """ """ @@ -12983,15 +13137,24 @@ 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( + """ + 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! } """ @@ -13129,9 +13292,12 @@ type TwitterPostStatusResponsePayload { Namespace for all mutations for Twitter """ type TwitterMutationNamespace { - postStatus(""" - Post a status update on twitter. You know - tweeting! - """ input: TwitterPostStatusArg!): TwitterPostStatusResponsePayload! + postStatus( + """ + Post a status update on twitter. You know - tweeting! + """ + input: TwitterPostStatusArg! + ): TwitterPostStatusResponsePayload! } """ @@ -13145,83 +13311,151 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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! } """ @@ -14547,83 +14781,151 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 { @@ -18414,7 +18716,7 @@ input SalesforceDandBCompanyPatch { """ thirdSic8: String """ - Second SIC8 Description + Second SIC8 Description """ secondSic8Desc: String """ @@ -19717,9 +20019,12 @@ type SalesforceRecentlyViewed { Language """ language: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! + customFields( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! } type SalesforceUpdateRecentlyViewedPayload { @@ -28504,9 +28809,12 @@ type SalesforceFeedLike { InsertedBy ID """ insertedBy: SalesforceUser! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! + customFields( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! } type SalesforceCreateFeedLikePayload { @@ -29226,7 +29534,7 @@ input SalesforceDandBCompanyInput { """ secondSic8: String """ - Second SIC8 Description + Second SIC8 Description """ secondSic8Desc: String """ @@ -30035,9 +30343,12 @@ type SalesforceOutgoingEmailRelation { Relation Address """ relationAddress: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! + customFields( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! } type SalesforceCreateOutgoingEmailRelationPayload { @@ -34866,9 +35177,12 @@ type SalesforceFeedSignal { InsertedBy ID """ insertedBy: SalesforceUser! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! + customFields( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! } type SalesforceCreateFeedSignalPayload { @@ -39645,83 +39959,151 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 { @@ -40158,83 +40540,151 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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! } """ @@ -40262,83 +40712,151 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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! } """ @@ -40366,83 +40884,151 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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! } """ @@ -40590,83 +41176,151 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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! } """ @@ -41398,27 +42052,39 @@ 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 to create contact. + """ + input: HubspotCreateContactInput! + ): HubspotCreateContactPayload! """ Update a contact in HubSpot. """ - updateContact(""" - Input to update a contact. - """ input: HubspotUpdateContactInput!): HubspotUpdateContactPayload! + updateContact( + """ + Input to update a contact. + """ + input: HubspotUpdateContactInput! + ): HubspotUpdateContactPayload! """ Update a contact in HubSpot by email address. """ - updateContactByEmail(""" - Input to update a contact by email. - """ 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 to update a contact by email. - """ input: HubspotUpdateContactByEmailInput!): HubspotUpsertContactPayload! + upsertContact( + """ + Input to update a contact by email. + """ + input: HubspotUpdateContactByEmailInput! + ): HubspotUpsertContactPayload! """ Make a REST API call to the Hubspot API. @@ -41990,83 +42656,151 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 { @@ -42399,339 +43133,522 @@ 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!]! + """ + 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!]!, """ - 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!]! + """ + 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!]!, """ - 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!]! + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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 + 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.") + @deprecated( + reason: "Beta: this field is still in beta while we work out the kinks." + ) signoutServiceUser(input: OneGraphSignoutServiceUserInput!): SignoutServicesResponsePayload! signoutServices(data: SignoutServicesData!): SignoutServicesResponsePayload! } @@ -43097,9 +44014,12 @@ type RssQuery { """ """ - rss2Feed(""" - The source of the RSS2 feed - """ url: String!): Rss2Channel! + rss2Feed( + """ + The source of the RSS2 feed + """ + url: String! + ): Rss2Channel! } input OneGraphSetAuthGuardianRuleEffectHasuraSetSessionVariableInput { @@ -43563,7 +44483,9 @@ type OneGraphAppSubscriptionWebsocketDestination { clientId: String! } -union OneGraphAppSubscriptionDestination = OneGraphAppSubscriptionWebsocketDestination | OneGraphAppSubscriptionWebhookDestination +union OneGraphAppSubscriptionDestination = + | OneGraphAppSubscriptionWebsocketDestination + | OneGraphAppSubscriptionWebhookDestination """ Information about a subscription to gmail. @@ -43714,11 +44636,16 @@ 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( + """ + Fiter by status of the subscription + """ + status: OneGraphAppSubscriptionsStatusEnumArg + """ + How many subsriptions to fetch + """ + first: Int + ): OneGraphAppSubscriptionsConnection! """ The JWT settings for this app """ @@ -43726,9 +44653,12 @@ 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( + """ + 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. """ @@ -43736,11 +44666,16 @@ 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( + """ + 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. """ @@ -43865,13 +44800,19 @@ type OneGraphServiceQuery { queries: [OneGraphQuery!]! searchQueries(query: String!): [OneGraphQuery!]! apps: [OneGraphApp!]! - app(""" - App id - """ id: String!): OneGraphApp! + app( + """ + App id + """ + id: String! + ): OneGraphApp! orgs: [OneGraphOrg!]! - org(""" - Org id - """ id: String!): OneGraphOrg! + org( + """ + Org id + """ + id: String! + ): OneGraphOrg! serverInfo: OneGraphServerInfo! authGuardianPreview(input: OneGraphSetAuthGuardianInput!): OneGraphSetAuthGuardianResponsePayload } @@ -43955,15 +44896,30 @@ 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 + """ + 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 """ @@ -44021,45 +44977,78 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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. """ @@ -44362,15 +45351,24 @@ 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( + """ + 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! } """ @@ -44476,11 +45474,16 @@ 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( + """ + 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. """ @@ -44502,19 +45505,32 @@ 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( + """ + 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. """ @@ -44622,39 +45638,66 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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. """ @@ -44678,15 +45721,24 @@ 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( + """ + 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. """ @@ -44698,15 +45750,24 @@ 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( + """ + 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. """ @@ -44722,15 +45783,24 @@ 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( + """ + 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 """ @@ -44782,17 +45852,28 @@ 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( + """ + 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. """ @@ -44808,19 +45889,32 @@ 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( + """ + 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. """ @@ -44916,33 +46010,54 @@ type ProductHuntCollectionConnection { """ A post. """ -type ProductHuntPost implements ProductHuntVotableInterface & ProductHuntTopicableInterface { +type ProductHuntPost implements ProductHuntVotableInterface & + ProductHuntTopicableInterface { """ 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( + """ + 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(""" - 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( + """ + 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. """ @@ -45010,15 +46125,24 @@ 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( + """ + 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. """ @@ -45034,19 +46158,32 @@ 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( + """ + 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. """ @@ -45128,15 +46265,24 @@ 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( + """ + 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. """ @@ -45144,15 +46290,24 @@ 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( + """ + 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. """ @@ -45174,153 +46329,267 @@ 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( + """ + URL friendly slug for the object. + """ + slug: String + """ + ID for the object. + """ + 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( + """ + 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 for the object. - """ id: ID!): ProductHuntComment + comment( + """ + ID for the object. + """ + id: ID! + ): ProductHuntComment """ Look up a Goal. """ - goal(""" - ID for the object. - """ id: ID!): ProductHuntGoal + goal( + """ + ID for the object. + """ + 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( + """ + 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 for the object. - """ id: ID!): ProductHuntMakerGroup + makerGroup( + """ + ID for the object. + """ + 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( + """ + 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(""" - URL friendly slug for the object. - """ slug: String, """ - ID for the object. - """ 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(""" - 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( + """ + 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(""" - URL friendly slug for the object. - """ slug: String, """ - ID for the object. - """ 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(""" - 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( + """ + 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 for the user. - """ username: String, """ - ID for the user. - """ 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. """ @@ -45338,15 +46607,24 @@ 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( + """ + 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 { @@ -45641,9 +46919,12 @@ type GitHubQuery { """ Look up a code of conduct by its key """ - codeOfConduct(""" - The code of conduct's key - """ key: String!): GitHubCodeOfConduct + codeOfConduct( + """ + The code of conduct's key + """ + key: String! + ): GitHubCodeOfConduct """ Look up a code of conduct by its key """ @@ -45651,33 +46932,51 @@ type GitHubQuery { """ Look up an enterprise by URL slug. """ - enterprise(""" - The enterprise invitation token. - """ invitationToken: String, """ - The enterprise URL slug. - """ 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(""" - 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( + """ + 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(""" - The invitation token sent with the invitation email. - """ 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(""" - The license's downcased SPDX ID - """ key: String!): GitHubLicense + license( + """ + The license's downcased SPDX ID + """ + key: String! + ): GitHubLicense """ Return a list of known open source licenses """ @@ -45685,59 +46984,101 @@ 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( + """ + 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(""" - Also check topic aliases for the category slug - """ useTopicAliases: Boolean, """ - The URL slug of the category. - """ 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(""" - Select the listing that matches this slug. It's the short name of the listing used in its URL. - """ 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(""" - 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( + """ + 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 """ @@ -45745,27 +47086,39 @@ type GitHubQuery { """ Fetches an object given its ID. """ - node(""" - ID of the object. - """ id: ID!): GitHubNode + node( + """ + ID of the object. + """ + id: ID! + ): GitHubNode """ Lookup nodes by a list of IDs. """ - nodes(""" - The list of node IDs. - """ ids: [ID!]!): [GitHubNode]! + nodes( + """ + The list of node IDs. + """ + ids: [ID!]! + ): [GitHubNode]! """ Lookup a organization by login. """ - organization(""" - The organization's login. - """ login: String!): GitHubOrganization + organization( + """ + The organization's login. + """ + 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( + """ + 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 """ @@ -45773,104 +47126,176 @@ 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( + """ + 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(""" - The username to lookup the owner by. - """ login: String!): GitHubRepositoryOwner + repositoryOwner( + """ + The username to lookup the owner by. + """ + login: String! + ): GitHubRepositoryOwner """ Lookup resource by a URL. """ - resource(""" - The URL. - """ url: String!): GitHubUniformResourceLocatable + resource( + """ + The URL. + """ + 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( + """ + 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - GitHub Security Advisory ID. - """ ghsaId: String!): GitHubSecurityAdvisory + securityAdvisory( + """ + GitHub Security Advisory ID. + """ + 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - 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( + """ + 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(""" - The topic's name. - """ name: String!): GitHubTopic + topic( + """ + The topic's name. + """ + name: String! + ): GitHubTopic """ Lookup a user by login. """ - user(""" - The user's login. - """ login: String!): GitHubUser + user( + """ + The user's login. + """ + login: String! + ): GitHubUser """ The currently authenticated user. """ @@ -46073,7 +47498,10 @@ type BrexSumAggregationResult { """ """ -union BrexAggregationResult = BrexSumAggregationResult | BrexGroupAggregationResult | BrexDateHistogramAggregationResult +union BrexAggregationResult = + | BrexSumAggregationResult + | BrexGroupAggregationResult + | BrexDateHistogramAggregationResult """ @@ -46904,13 +48332,24 @@ 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 + 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 @@ -47171,21 +48610,30 @@ type ZeitQuery { """ Logs from a deployment to Zeit. """ - deploymentLogs(""" - The deployment id from Zeit. - """ id: String!): [ZeitDeploymentLog!] + deploymentLogs( + """ + The deployment id from Zeit. + """ + id: String! + ): [ZeitDeploymentLog!] """ Whether a domain *may* be available """ - domainAvailable(""" - The domain name - """ name: String!): ZeitDomainAvailabilityStatus + domainAvailable( + """ + The domain name + """ + name: String! + ): ZeitDomainAvailabilityStatus """ Check domain price """ - domainPrice(""" - The domain name - """ 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. """ @@ -48337,21 +49785,24 @@ 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( + """ + 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 } """ @@ -49561,11 +51012,16 @@ 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( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + """ + Number of videos to fetch. + """ + first: Int + ): YouTubePlaylistItemsConnection! } """ @@ -49574,20 +51030,37 @@ 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 + 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( @@ -49943,11 +51416,16 @@ 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( + """ + Optional SourceId to report your client to USPS + """ + sourceId: String + """ + Tracking number for the package + """ + trackId: String! + ): UspsTrackResponse! } """ @@ -50821,15 +52299,21 @@ type UpsQuery { """ Track a UPS package """ - track(""" - Inquiry number for the package - """ inquiryNumber: String!): UpsTrackResponse! + track( + """ + Inquiry number for the package + """ + inquiryNumber: String! + ): UpsTrackResponse! """ Track several UPS package """ - trackMultiple(""" - Inquiry numbers for the package - """ inquiryNumbers: [String!]!): [UpsTrackResponse!]! + trackMultiple( + """ + Inquiry numbers for the package + """ + inquiryNumbers: [String!]! + ): [UpsTrackResponse!]! } """ @@ -50840,9 +52324,12 @@ 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( + """ + Number of tweets to fetch + """ + first: Int + ): TwitterTimeline } """ @@ -50856,15 +52343,24 @@ 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( + """ + 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! } """ @@ -51238,13 +52734,24 @@ 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 + 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. @@ -51330,65 +52837,97 @@ 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( + """ + 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(""" - Action id - """ id: String!): TrelloAction! + action( + """ + Action id + """ + id: String! + ): TrelloAction! """ Find a trello board by id """ - board(""" - Board id - """ id: String!): TrelloBoard! + board( + """ + Board id + """ + id: String! + ): TrelloBoard! """ Find a trello card by id """ - card(""" - Card id - """ id: String!): TrelloCard! + card( + """ + Card id + """ + id: String! + ): TrelloCard! """ Find a trello checklist by id """ - checklist(""" - Checklist id - """ id: String!): TrelloChecklist! + checklist( + """ + Checklist id + """ + id: String! + ): TrelloChecklist! """ Find a trello customField by id """ - customField(""" - CustomField id - """ id: String!): TrelloCustomFields! + customField( + """ + CustomField id + """ + id: String! + ): TrelloCustomFields! """ Find a trello enterprise by id """ - enterprise(""" - Enterprise id - """ id: String!): TrelloEnterprise! + enterprise( + """ + Enterprise id + """ + id: String! + ): TrelloEnterprise! """ Find a trello list by id """ - list(""" - List id - """ id: String!): TrelloList! + list( + """ + List id + """ + id: String! + ): TrelloList! """ Find a trello organization by id """ - organization(""" - Organization id - """ id: String!): TrelloOrganization! + organization( + """ + Organization id + """ + id: String! + ): TrelloOrganization! """ Find a trello webhook by id """ - webhook(""" - Webhook id - """ id: String!): TrelloWebhook! + webhook( + """ + Webhook id + """ + id: String! + ): TrelloWebhook! """ Lists all available emoji """ @@ -51755,12 +53294,18 @@ 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( + """ + The artist id + """ + id: String! + ): SpotifyArtist + track( + """ + The track id + """ + id: String! + ): SpotifyTrack search(data: SpotifySearchArg!): SpotifySearchResults } @@ -52049,11 +53594,16 @@ 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! + 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 @@ -52070,15 +53620,24 @@ 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( + """ + 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! } """ @@ -52569,5075 +54128,9196 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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(""" - 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(""" - 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(""" - 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 + 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( + """ + 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( + """ + 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( + """ + 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 """ - 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 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 """ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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. @@ -57717,17 +63397,25 @@ 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( + """ + 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(""" - The specific date for download stats, e.g. 2018-12-06 - """ date: String!): NpmOverallDownloadPeriodData + day( + """ + The specific date for download stats, e.g. 2018-12-06 + """ + date: String! + ): NpmOverallDownloadPeriodData } type NpmPackageMetadataDistTagEntry { @@ -57822,17 +63510,25 @@ 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( + """ + 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(""" - The specific date for download stats, e.g. 2018-12-06 - """ date: String!): NpmPackageDownloadPeriodData + day( + """ + The specific date for download stats, e.g. 2018-12-06 + """ + date: String! + ): NpmPackageDownloadPeriodData } """ @@ -57956,9 +63652,12 @@ 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( + """ + Whether to include this query in the Bundlephobia analytics stats and recent searches + """ + record: Boolean + ): BundlephobiaDependencyInfo } """ @@ -58103,9 +63802,12 @@ 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( + """ + 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. """ @@ -58119,9 +63821,12 @@ 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( + """ + Find the package by its name + """ + name: String! + ): NpmPackage """ Overall download stats in the npm ecosystem """ @@ -58139,15 +63844,24 @@ 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( + """ + 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 { @@ -58317,7 +64031,11 @@ type NetlifySiteHookDataWebhook { signatureSecret: String } -union NetlifySiteHookData = NetlifySiteHookDataWebhook | NetlifySiteHookDataGitHub | NetlifySiteHookDataSlack | NetlifySiteHookDataEmail +union NetlifySiteHookData = + | NetlifySiteHookDataWebhook + | NetlifySiteHookDataGitHub + | NetlifySiteHookDataSlack + | NetlifySiteHookDataEmail type NetlifySiteHook { """ @@ -58946,17 +64664,25 @@ type NetlifyQuery { """ Get a Netlify site by its id """ - site(""" - The site id - """ id: String!): NetlifySite + site( + """ + The site id + """ + 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( + """ + 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 """ @@ -58964,11 +64690,16 @@ 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 to search for (e.g. example.com) + """ + domain: String! + """ + Netlify account id + """ + accountId: String! + ): NetlifyDomainAvailability! """ Make a REST API call to the Netlify API. @@ -58990,15 +64721,24 @@ 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( + """ + 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! } """ @@ -59026,15 +64766,24 @@ 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( + """ + 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! } """ @@ -59062,15 +64811,24 @@ 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( + """ + 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! } """ @@ -59200,27 +64958,48 @@ 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( + """ + 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! } """ @@ -59272,97 +65051,166 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - If true, retrieves conversation messages in plain text - """ displayAsPlaintext: Boolean, """ - id of the conversation - """ 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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. """ @@ -59370,35 +65218,58 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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) """ @@ -59416,15 +65287,24 @@ 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( + """ + 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! } """ @@ -61081,11 +66961,16 @@ 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( + """ + 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! } """ @@ -61584,11 +67469,16 @@ 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( + """ + 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 } """ @@ -61602,27 +67492,42 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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. """ @@ -61630,25 +67535,38 @@ 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( + """ + 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(""" - Fetch results after the specified cursor. - """ after: String, """ - Number of results to fetch. Defaults to 10, max is 100. - """ 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 of the owner. - """ id: Int!): HubspotOwner! + owner( + """ + Id of the owner. + """ + id: Int! + ): HubspotOwner! """ Make a REST API call to the Hubspot API. @@ -62147,7 +68065,7 @@ enum GoogleTranslateFormat { """ text """ - html indicates HTML + html indicates HTML """ html } @@ -63397,204 +69315,225 @@ 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( + """ + 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 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 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! } """ @@ -64170,31 +70109,50 @@ 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( + """ + 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 } """ @@ -64644,15 +70602,15 @@ type GoogleCalendarEventCreator { } """ - Key/value pair +Key/value pair """ type KVPair { """ - Key field + Key field """ key: String """ - Value field + Value field """ value: String } @@ -64874,33 +70832,54 @@ 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( + """ + 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. @@ -64908,11 +70887,16 @@ 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( + """ + 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 } """ @@ -67639,12 +73623,15 @@ 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( + """ + 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 { @@ -67803,15 +73790,15 @@ type MessageAttachment { } """ - The contents of a List-Unsubscribe header +The contents of a List-Unsubscribe header """ type GoogleGmailListUnsubscribe { """ - The mailto portion of the unsubscribe link + The mailto portion of the unsubscribe link """ mailto: [String!]! """ - The http portion of the unsubscribe link + The http portion of the unsubscribe link """ http: [String!]! } @@ -67847,11 +73834,11 @@ type GmailMessagePartBody { """ size: Int """ - The body data of a MIME message part. May be empty for MIME container types that have no message body or when the body data is sent as a separate attachment. An attachment ID is present if the body data is contained in a separate attachment. + The body data of a MIME message part. May be empty for MIME container types that have no message body or when the body data is sent as a separate attachment. An attachment ID is present if the body data is contained in a separate attachment. """ decodedData: String """ - A collection of http links in the body in the order they appear + A collection of http links in the body in the order they appear """ httpLinks: [String!] } @@ -67885,31 +73872,31 @@ type GmailMessagePart { """ parts: [GmailMessagePart!] """ - The recipients of the email, extracted from the "To" header + The recipients of the email, extracted from the "To" header """ to: String """ - The recipients of the email, extracted from the "Cc" header + The recipients of the email, extracted from the "Cc" header """ cc: String """ - The recipients of the email, extracted from the "Bcc" header + The recipients of the email, extracted from the "Bcc" header """ bcc: String """ - The sender of the email, extracted from the "From" header + The sender of the email, extracted from the "From" header """ from: String """ - The unsubscribe link (if any), extracted from the "List-Unsubscribe" header + The unsubscribe link (if any), extracted from the "List-Unsubscribe" header """ listUnsubscribe: GoogleGmailListUnsubscribe """ - The date of the email, extracted from the "Date" header + The date of the email, extracted from the "Date" header """ date: String """ - The subject of the email, extracted from the "Subject" header + The subject of the email, extracted from the "Subject" header """ subject: String attachments: [MessageAttachment!] @@ -67959,7 +73946,7 @@ type GmailMessage { """ internalDate: String """ - List of labels applied to this message. + List of labels applied to this message. """ labels: [GmailLabel!]! } @@ -68000,48 +73987,80 @@ 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( + """ + 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(""" - Draft id - """ id: String!): GmailDraft! + draft( + """ + Draft id + """ + id: String! + ): GmailDraft! """ Return a message by its id """ @@ -68050,13 +74069,25 @@ 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! + 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! + 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! } @@ -68324,15 +74355,24 @@ 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( + """ + 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 { @@ -68357,15 +74397,24 @@ 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( + """ + 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 { @@ -68394,15 +74443,21 @@ type GoogleAnalytics { """ A Google analytics account. """ - account(""" - The account id for the account to fetch. - """ id: String!): GoogleAnalyticsAccont! + account( + """ + The account id for the account to fetch. + """ + id: String! + ): GoogleAnalyticsAccont! """ Google analytics accounts, with pagination information. """ - accounts(""" - Number of accounts to fetch - """ first: Int): GoogleAnalyticsAccountsConnection! + accounts( + """ + Number of accounts to fetch + """ + first: Int + ): GoogleAnalyticsAccountsConnection! } """ @@ -70237,15 +76292,21 @@ type FedexQuery { """ Track a Fedex package """ - track(""" - Tracking number for the package - """ trackingNumber: String!): FedexTrackReply! + track( + """ + Tracking number for the package + """ + trackingNumber: String! + ): FedexTrackReply! """ Track multiple Fedex packages """ - trackMultiple(""" - Tracking numbers for packages - """ trackingNumbers: [String!]!): [FedexTrackReply]! + trackMultiple( + """ + Tracking numbers for packages + """ + trackingNumbers: [String!]! + ): [FedexTrackReply]! } """ @@ -80940,15 +87001,24 @@ 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( + """ + 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! } """ @@ -81285,18 +87355,30 @@ 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( + """ + 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 } """ @@ -81774,15 +87856,24 @@ 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( + """ + 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! } """ @@ -81810,34 +87901,43 @@ 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( + """ + 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. @@ -81895,15 +87995,24 @@ 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( + """ + 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! } """ @@ -82223,13 +88332,20 @@ 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( + """ + 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 """ @@ -82261,19 +88377,29 @@ 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( + """ + 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(""" - Account Id - """ id: String!): CloudflareAccount + account( + """ + Account Id + """ + id: String! + ): CloudflareAccount """ currently logged in user """ @@ -82503,9 +88629,12 @@ type Clearbit { """ Clearbit company autocomplete """ - autocomplete(""" - The partial name of the company - """ name: String!): [ClearbitAutocomplete!] + autocomplete( + """ + The partial name of the company + """ + name: String! + ): [ClearbitAutocomplete!] """ Clearbit contact enrichment """ @@ -82543,9 +88672,12 @@ 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( + """ + Whether to include this query in the Bundlephobia analytics stats and recent searches + """ + record: Boolean + ): BundlephobiaDependencyInfo } type BundlephobiaDependencySize { @@ -82621,19 +88753,29 @@ 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( + """ + 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(""" - The npm package name. - """ package: String!): [BundlephobiaDependencyInfo] + packageHistory( + """ + The npm package name. + """ + package: String! + ): [BundlephobiaDependencyInfo] """ Get recent searches on Bundlephobia. """ @@ -83054,57 +89196,95 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - Case-insensitive name for the table - """ tableName: String!): AirtableTable! + table( + """ + Case-insensitive name for the table + """ + tableName: String! + ): AirtableTable! } enum AirtableRecordsSortDirection { @@ -83144,7 +89324,10 @@ type AirtableStringField { value: String! } -union AirtableField = AirtableStringField | AirtableNumberField | AirtableBooleanField +union AirtableField = + | AirtableStringField + | AirtableNumberField + | AirtableBooleanField type AirtableRecord { """ @@ -83171,38 +89354,63 @@ 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( + """ + 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(""" - 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( + """ + 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 { @@ -85608,17 +91816,28 @@ 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( + """ + 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. """ @@ -85668,17 +91887,28 @@ 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( + """ + 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. """ @@ -85728,17 +91958,28 @@ 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( + """ + 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. """ @@ -86018,7 +92259,9 @@ type GitHubCreatedIssueContribution implements GitHubContribution { """ Represents either a issue the viewer can access or a restricted contribution. """ -union GitHubCreatedIssueOrRestrictedContribution = GitHubRestrictedContribution | GitHubCreatedIssueContribution +union GitHubCreatedIssueOrRestrictedContribution = + | GitHubRestrictedContribution + | GitHubCreatedIssueContribution """ Represents the contribution a user made on GitHub by opening a pull request. @@ -86055,7 +92298,9 @@ type GitHubCreatedPullRequestContribution implements GitHubContribution { """ Represents either a pull request the viewer can access or a restricted contribution. """ -union GitHubCreatedPullRequestOrRestrictedContribution = GitHubRestrictedContribution | GitHubCreatedPullRequestContribution +union GitHubCreatedPullRequestOrRestrictedContribution = + | GitHubRestrictedContribution + | GitHubCreatedPullRequestContribution """ Represents the contribution a user made on GitHub by creating a repository. @@ -86092,7 +92337,9 @@ type GitHubCreatedRepositoryContribution implements GitHubContribution { """ Represents either a repository the viewer can access or a restricted contribution. """ -union GitHubCreatedRepositoryOrRestrictedContribution = GitHubRestrictedContribution | GitHubCreatedRepositoryContribution +union GitHubCreatedRepositoryOrRestrictedContribution = + | GitHubRestrictedContribution + | GitHubCreatedRepositoryContribution """ Represents a private contribution a user made on GitHub. @@ -86229,17 +92476,28 @@ 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( + """ + 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. """ @@ -86261,9 +92519,12 @@ type GitHubContributionsCollection { """ Commit contributions made by the user, grouped by repository. """ - commitContributionsByRepository(""" - How many repositories should be included. - """ maxRepositories: Int): [GitHubCommitContributionsByRepository!]! + commitContributionsByRepository( + """ + How many repositories should be included. + """ + maxRepositories: Int + ): [GitHubCommitContributionsByRepository!]! """ A calendar of this user's contributions on GitHub. """ @@ -86315,31 +92576,53 @@ 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( + """ + 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(""" - 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( + """ + 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. """ @@ -86371,67 +92654,116 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - How many repositories should be included. - """ 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(""" - 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( + """ + 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. """ @@ -86447,19 +92779,29 @@ 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( + """ + 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(""" - 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( + """ + 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. """ @@ -86471,11 +92813,16 @@ 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( + """ + 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. """ @@ -86483,17 +92830,25 @@ 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( + """ + 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(""" - Should the user's first repository ever be excluded from this count. - """ 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. """ @@ -86507,9 +92862,12 @@ 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( + """ + Filter to only a particular kind of pinnable item. + """ + type: GitHubPinnableItemType + ): Boolean! """ The public profile email. """ @@ -86537,31 +92895,53 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -86689,15 +93069,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 { @@ -86997,9 +93386,12 @@ type BrexExport implements OneGraphNode & BrexNode { """ status: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87082,9 +93474,12 @@ type BrexFedachParticipant implements OneGraphNode & BrexNode { """ servicingFrbNumber: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87135,9 +93530,12 @@ type BrexFedwireParticipant implements OneGraphNode & BrexNode { """ telegraphicName: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87172,9 +93570,12 @@ type BrexIntegrationErrorDetails implements OneGraphNode & BrexNode { """ minPostedAt: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87204,9 +93605,12 @@ type BrexIntegrationRulesFilterFacet implements OneGraphNode & BrexNode { """ type: BrexIntegrationRulesFilterFacetType - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87225,9 +93629,12 @@ type BrexIntegrationUser implements OneGraphNode & BrexNode { """ user: BrexUser - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87308,9 +93715,12 @@ type BrexMilesTransfer implements OneGraphNode & BrexNode { """ toUser: BrexUser - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87461,7 +93871,16 @@ type BrexOnboardingPageUwEcommerceConnection { """ """ -union BrexOnboardingSubmittablePage = BrexOnboardingPageUwEcommerceConnection | BrexOnboardingPageUwBankConnection | BrexOnboardingPagePersona | BrexOnboardingPageMfa | BrexOnboardingPageFundingSource | BrexOnboardingPageForm | BrexOnboardingPageEmailVerification | BrexOnboardingPageDTerms | BrexOnboardingPageDSuitability +union BrexOnboardingSubmittablePage = + | BrexOnboardingPageUwEcommerceConnection + | BrexOnboardingPageUwBankConnection + | BrexOnboardingPagePersona + | BrexOnboardingPageMfa + | BrexOnboardingPageFundingSource + | BrexOnboardingPageForm + | BrexOnboardingPageEmailVerification + | BrexOnboardingPageDTerms + | BrexOnboardingPageDSuitability """ @@ -87516,7 +93935,13 @@ type BrexOnboardingFormUwEcommerceConnection { """ """ -union BrexOnboardingInformationRequestContent = BrexOnboardingFormUwEcommerceConnection | BrexOnboardingFormUwBankConnection | BrexOnboardingFormPersona | BrexOnboardingFormJsonSchema | BrexOnboardingFormEmpty | BrexOnboardingFormBlocking +union BrexOnboardingInformationRequestContent = + | BrexOnboardingFormUwEcommerceConnection + | BrexOnboardingFormUwBankConnection + | BrexOnboardingFormPersona + | BrexOnboardingFormJsonSchema + | BrexOnboardingFormEmpty + | BrexOnboardingFormBlocking """ @@ -87653,9 +94078,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87690,9 +94118,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87736,9 +94167,12 @@ type BrexOnboardingInformationRequest implements OneGraphNode & BrexNode { """ type: BrexOnboardingInformationRequestType! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87793,9 +94227,12 @@ type BrexProductApplication implements OneGraphNode & BrexNode { """ status: BrexProductApplicationStatus - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87853,9 +94290,12 @@ type BrexReferral implements OneGraphNode & BrexNode { """ status: BrexReferralStatus! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87910,9 +94350,12 @@ 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! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87971,9 +94414,12 @@ type BrexRole implements OneGraphNode & BrexNode { """ rules: [BrexRoleRule] - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88051,7 +94497,13 @@ type BrexWeeklyClosingStrategy { """ """ -union BrexClosingStrategy = BrexWeeklyClosingStrategy | BrexSemiWeeklyClosingStrategy | BrexSemiMonthlyClosingStrategy | BrexMonthlyClosingStrategy | BrexEveryNDaysClosingStrategy | BrexBiweeklyClosingStrategy +union BrexClosingStrategy = + | BrexWeeklyClosingStrategy + | BrexSemiWeeklyClosingStrategy + | BrexSemiMonthlyClosingStrategy + | BrexMonthlyClosingStrategy + | BrexEveryNDaysClosingStrategy + | BrexBiweeklyClosingStrategy """ @@ -88073,9 +94525,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88237,9 +94692,12 @@ type BrexLoyaltyProgram implements OneGraphNode & BrexNode { """ quote: BrexMilesTransferQuote - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88270,9 +94728,12 @@ type BrexProgramMembership implements OneGraphNode & BrexNode { """ membershipId: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88404,7 +94865,10 @@ type BrexChannelSmsOptions { """ """ -union BrexChannelOptions = BrexChannelSmsOptions | BrexChannelPushOptions | BrexChannelEmailOptions +union BrexChannelOptions = + | BrexChannelSmsOptions + | BrexChannelPushOptions + | BrexChannelEmailOptions enum BrexNotificationType { CARD_IS_SHIPPING @@ -88449,9 +94913,12 @@ type BrexNotificationSubscription implements OneGraphNode & BrexNode { """ notificationType: BrexNotificationType - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88511,9 +94978,12 @@ type BrexChannel implements OneGraphNode & BrexNode { """ status: BrexChannelStatus - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88643,7 +95113,10 @@ type BrexFinancialMfaChallengeTextQuestion { """ """ -union BrexFinancialMfaChallengeQuestion = BrexFinancialMfaChallengeTextQuestion | BrexFinancialMfaChallengeImageQuestion | BrexFinancialMfaChallengeChoicesQuestion +union BrexFinancialMfaChallengeQuestion = + | BrexFinancialMfaChallengeTextQuestion + | BrexFinancialMfaChallengeImageQuestion + | BrexFinancialMfaChallengeChoicesQuestion """ @@ -88662,7 +95135,9 @@ type BrexFinancialMfaChallenge { """ """ -union BrexFinancialsSourceResult = BrexFinancialSource | BrexFinancialMfaChallenge +union BrexFinancialsSourceResult = + | BrexFinancialSource + | BrexFinancialMfaChallenge enum BrexFinancialSourceStatus { ACTIVE @@ -88704,9 +95179,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88811,9 +95289,12 @@ type BrexFinancialInstitution implements OneGraphNode & BrexNode { """ website: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88874,9 +95355,12 @@ type BrexFinancialAccount implements OneGraphNode & BrexNode { """ source: BrexFinancialSource - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88935,9 +95419,12 @@ type BrexFinancialSource implements OneGraphNode & BrexNode { """ status: BrexFinancialSourceStatus - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89305,7 +95792,16 @@ type BrexWireDetails { """ """ -union BrexDepositsTransactionDetails = BrexWireDetails | BrexPaymentDetails | BrexExternallyOriginatedChequeDetails | BrexDividendDetails | BrexDepositsAdminBalanceAdjustmentDetails | BrexCardCollectionDetails | BrexBrexOriginatedChequeDetails | BrexAchReturnDetails | BrexAchDetails +union BrexDepositsTransactionDetails = + | BrexWireDetails + | BrexPaymentDetails + | BrexExternallyOriginatedChequeDetails + | BrexDividendDetails + | BrexDepositsAdminBalanceAdjustmentDetails + | BrexCardCollectionDetails + | BrexBrexOriginatedChequeDetails + | BrexAchReturnDetails + | BrexAchDetails """ @@ -89355,9 +95851,12 @@ type BrexDepositsTransaction implements OneGraphNode & BrexNode { """ type: BrexDepositsTransactionType! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89428,9 +95927,12 @@ type BrexDepositsStatement implements OneGraphNode & BrexNode { """ periodStartTime: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89550,9 +96052,12 @@ type BrexCounterparty implements OneGraphNode & BrexNode { """ type: BrexType - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89684,9 +96189,12 @@ type BrexDepositsAccount implements OneGraphNode & BrexNode { before: String after: String ): BrexDepositsTransactionConnection - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89883,9 +96391,12 @@ type BrexCollectionIntention implements OneGraphNode & BrexNode { """ status: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89912,9 +96423,12 @@ type BrexRewardsRefund implements OneGraphNode & BrexNode { """ refundedStatementEntry: BrexStatementEntry! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89979,9 +96493,12 @@ type BrexStatementEntryLens implements OneGraphNode & BrexNode { """ userCategory: BrexUserCategory - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90009,9 +96526,12 @@ type BrexExportItem implements OneGraphNode & BrexNode { """ status: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90090,9 +96610,12 @@ type BrexStatementEntry implements OneGraphNode & BrexNode { """ userCategory: BrexUserCategory - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90102,7 +96625,13 @@ type BrexStatementEntry implements OneGraphNode & BrexNode { """ """ -union BrexSearchable = BrexUser | BrexTransactionOperation | BrexTransaction | BrexStatementEntry | BrexStatement | BrexCollectionIntention +union BrexSearchable = + | BrexUser + | BrexTransactionOperation + | BrexTransaction + | BrexStatementEntry + | BrexStatement + | BrexCollectionIntention """ @@ -90205,9 +96734,12 @@ type BrexAsset implements OneGraphNode & BrexNode { """ presignedDownloadUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90230,9 +96762,12 @@ type BrexReceipt implements OneGraphNode & BrexNode { """ origin: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90345,9 +96880,12 @@ type BrexIntegrationRule implements OneGraphNode & BrexNode { """ type: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90374,9 +96912,12 @@ type BrexIntegrationRuleEvaluation implements OneGraphNode & BrexNode { """ value: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90448,7 +96989,12 @@ type BrexQuickbooksLocation { """ """ -union BrexExternalIntegrationEntityPayload = BrexQuickbooksLocation | BrexQuickbooksClass | BrexNetsuiteLocation | BrexNetsuiteDepartment | BrexNetsuiteClass +union BrexExternalIntegrationEntityPayload = + | BrexQuickbooksLocation + | BrexQuickbooksClass + | BrexNetsuiteLocation + | BrexNetsuiteDepartment + | BrexNetsuiteClass """ @@ -90478,9 +97024,12 @@ type BrexExternalIntegrationEntity implements OneGraphNode & BrexNode { """ vendorInternalId: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90515,9 +97064,12 @@ type BrexTransactionLens implements OneGraphNode & BrexNode { """ userCategory: BrexUserCategory - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90568,9 +97120,12 @@ type BrexCardAcceptor implements OneGraphNode & BrexNode { """ zip: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90643,9 +97198,12 @@ 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! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90708,9 +97266,12 @@ 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! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90720,7 +97281,14 @@ type BrexLocation implements OneGraphNode & BrexNode { """ """ -union BrexSuggestionType = BrexUserCategory | BrexUser | BrexMerchantCategory | BrexMerchant | BrexLocation | BrexDepartment | BrexCard +union BrexSuggestionType = + | BrexUserCategory + | BrexUser + | BrexMerchantCategory + | BrexMerchant + | BrexLocation + | BrexDepartment + | BrexCard """ @@ -90742,9 +97310,12 @@ type BrexMerchantCategory implements OneGraphNode & BrexNode { """ name: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90775,9 +97346,12 @@ type BrexMerchant implements OneGraphNode & BrexNode { """ website: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90800,9 +97374,12 @@ type BrexPerMerchantStats implements OneGraphNode & BrexNode { """ merchant: BrexMerchant - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90925,9 +97502,12 @@ type BrexCard implements OneGraphNode & BrexNode { """ user: BrexUser - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91024,9 +97604,12 @@ type BrexTransaction implements OneGraphNode & BrexNode { """ userCategory: BrexUserCategory - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91049,9 +97632,12 @@ type BrexRewardsTrigger implements OneGraphNode & BrexNode { """ name: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91074,9 +97660,12 @@ type BrexRewardsAccrualEntry implements OneGraphNode & BrexNode { """ rewardsTrigger: BrexRewardsTrigger - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91164,9 +97753,12 @@ type BrexRule implements OneGraphNode & BrexNode { """ user: BrexUser - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91217,9 +97809,12 @@ type BrexTransactionOperation implements OneGraphNode & BrexNode { """ type: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91229,7 +97824,11 @@ type BrexTransactionOperation implements OneGraphNode & BrexNode { """ """ -union BrexStatementEntryOriginator = BrexTransactionOperation | BrexRewardsRefund | BrexCollectionAttempt | BrexCollection +union BrexStatementEntryOriginator = + | BrexTransactionOperation + | BrexRewardsRefund + | BrexCollectionAttempt + | BrexCollection """ @@ -91283,9 +97882,12 @@ type BrexCollectionAttempt implements OneGraphNode & BrexNode { """ status: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91384,9 +97986,12 @@ type BrexStatement implements OneGraphNode & BrexNode { """ status: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91430,9 +98035,12 @@ type BrexUnderwritingAnalysisFlag implements OneGraphNode & BrexNode { """ name: BrexUnderwritingAnalysisFlagName! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91479,9 +98087,12 @@ type BrexUnderwritingAnalysis 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91504,9 +98115,12 @@ type BrexUnderwritingAccount implements OneGraphNode & BrexNode { """ status: BrexUnderwritingAccountStatus! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91571,9 +98185,12 @@ type BrexFundingSourceData implements OneGraphNode & BrexNode { """ routingNumber: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91616,9 +98233,12 @@ type BrexFundingSource implements OneGraphNode & BrexNode { """ type: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91819,9 +98439,12 @@ type BrexAccount implements OneGraphNode & BrexNode { """ incorporationState: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91929,9 +98552,12 @@ type BrexUser implements OneGraphNode & BrexNode { """ status: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91995,9 +98621,12 @@ type BrexCredential implements OneGraphNode & BrexNode { """ vendor: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -92087,7 +98716,11 @@ type BrexXeroCategories { """ """ -union BrexAccountCategories = BrexXeroCategories | BrexQuickbooksCategories | BrexNetsuiteCategories | BrexExpensifyCategories +union BrexAccountCategories = + | BrexXeroCategories + | BrexQuickbooksCategories + | BrexNetsuiteCategories + | BrexExpensifyCategories """ @@ -92149,9 +98782,12 @@ type BrexIntegration implements OneGraphNode & BrexNode { """ vendor: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -92206,9 +98842,12 @@ type BrexUserCategory implements OneGraphNode & BrexNode { """ vendorInternalId: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -92302,261 +98941,474 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ Fetches an object given its globally unique `ID`. """ - node(""" - The globally unique `ID`. - """ nodeId: ID!): CrunchbaseNode + node( + """ + The globally unique `ID`. + """ + 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ """ @@ -92616,90 +99468,135 @@ 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( + """ + 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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - 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( + """ + 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 """ @@ -93210,9 +100107,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -93457,9 +100357,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -93689,60 +100592,108 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -94194,42 +101145,75 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -94497,60 +101481,108 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -94628,60 +101660,108 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -94828,9 +101908,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -94961,9 +102044,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -95209,42 +102295,75 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -95366,276 +102485,504 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -99938,42 +107285,75 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -100236,147 +107616,267 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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! """ """ @@ -100396,276 +107896,504 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -100733,24 +108461,42 @@ 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( + """ + 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 """ @@ -100783,9 +108529,12 @@ type CrunchbaseSyncState implements OneGraphNode & CrunchbaseNode { """ lastUpdatedAt: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -102212,21 +109961,36 @@ 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( + """ + 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! } """ @@ -104374,621 +112138,1134 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ Fetches an object given its globally unique `ID`. """ - node(""" - The globally unique `ID`. - """ nodeId: ID!): QuickbooksNode + node( + """ + The globally unique `ID`. + """ + 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ """ @@ -105004,195 +113281,291 @@ 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( + """ + 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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `Vendor`. - """ nodeId: ID!): QuickbooksVendor + vendor( + """ + The globally unique `ID` to be used in selecting a single `Vendor`. + """ + nodeId: ID! + ): QuickbooksVendor """ """ @@ -105317,9 +113690,12 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ realm(realmId: String): QuickbooksRealm - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -105349,24 +113725,42 @@ 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( + """ + 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 """ @@ -107029,9 +115423,12 @@ type QuickbooksJournalCode implements OneGraphNode & QuickbooksNode { """ lastUpdatedTime: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -112290,42 +120687,75 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -113137,42 +121567,75 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -114221,42 +122684,75 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -114458,24 +122954,42 @@ 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( + """ + 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 """ @@ -114600,21 +123114,36 @@ 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( + """ + 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! } """ @@ -114841,24 +123370,42 @@ 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( + """ + 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 """ @@ -114925,9 +123472,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -115181,21 +123731,36 @@ 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( + """ + 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! } """ @@ -115349,42 +123914,75 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -115696,24 +124294,42 @@ 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( + """ + 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 """ @@ -115809,9 +124425,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -116727,42 +125346,75 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -116843,114 +125495,207 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -117186,561 +125931,1026 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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`. """ @@ -117748,61 +126958,109 @@ 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! + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -117982,9 +127240,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -118688,42 +127949,75 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -119108,60 +128402,108 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -119901,132 +129243,240 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -120166,9 +129616,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -120324,42 +129777,75 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -120455,330 +129941,603 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -121030,78 +130789,141 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -121397,258 +131219,471 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -121781,24 +131816,42 @@ 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( + """ + 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 """ @@ -122252,186 +132305,339 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -122555,24 +132761,42 @@ 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( + """ + 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 """ @@ -123063,114 +133287,207 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -123341,114 +133658,207 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -123766,42 +134176,75 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -125193,186 +135636,339 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -125812,366 +136408,669 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -126417,168 +137316,306 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -126630,24 +137667,42 @@ 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( + """ + 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 """ @@ -127217,129 +138272,234 @@ type ImmigrationGraphQuery implements OneGraphNode & ImmigrationGraphNode { """ Fetches an object given its globally unique `ID`. """ - node(""" - The globally unique `ID`. - """ nodeId: ID!): ImmigrationGraphNode + node( + """ + The globally unique `ID`. + """ + 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ """ @@ -127395,42 +138555,63 @@ 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( + """ + 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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - The globally unique `ID` to be used in selecting a single `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(""" - 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( + """ + 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 """ @@ -127522,26 +138703,46 @@ 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( + """ + 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 """ @@ -128093,26 +139294,46 @@ 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( + """ + 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 """ @@ -128652,46 +139873,83 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -128789,26 +140047,46 @@ 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( + """ + 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 """ @@ -128844,7 +140122,8 @@ enum ImmigrationGraphH1BApplicationCaseStatus { """ """ -type ImmigrationGraphH1BApplication implements OneGraphNode & ImmigrationGraphNode { +type ImmigrationGraphH1BApplication implements OneGraphNode & + ImmigrationGraphNode { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ @@ -128941,9 +140220,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129047,26 +140329,46 @@ 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( + """ + 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 """ @@ -129104,7 +140406,8 @@ enum ImmigrationGraphFetchingStatusEnum { """ """ -type ImmigrationGraphScrapingStatus implements OneGraphNode & ImmigrationGraphNode { +type ImmigrationGraphScrapingStatus implements OneGraphNode & + ImmigrationGraphNode { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ @@ -129397,9 +140700,12 @@ type ImmigrationGraphScrapingStatus implements OneGraphNode & ImmigrationGraphNo """ wageLevel: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129521,15 +140827,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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! """ """ @@ -129554,9 +140869,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129651,17 +140969,28 @@ 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( + """ + 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! } """ @@ -129710,7 +141039,8 @@ input GitHubEnterpriseAdministratorInvitationOrder { """ An invitation for a user to become an owner or billing manager of an enterprise. """ -type GitHubEnterpriseAdministratorInvitation implements OneGraphNode & GitHubNode { +type GitHubEnterpriseAdministratorInvitation implements OneGraphNode & + GitHubNode { """ Identifies the date and time when the object was created. """ @@ -129739,9 +141069,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129819,9 +141152,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129883,17 +141219,28 @@ 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( + """ + 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! } """ @@ -130107,7 +141454,8 @@ enum GitHubEnterpriseServerUserAccountsUploadSyncState { """ A user accounts upload from an Enterprise Server installation. """ -type GitHubEnterpriseServerUserAccountsUpload implements OneGraphNode & GitHubNode { +type GitHubEnterpriseServerUserAccountsUpload implements OneGraphNode & + GitHubNode { """ Identifies the date and time when the object was created. """ @@ -130136,9 +141484,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130255,9 +141606,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130311,17 +141665,28 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -130354,9 +141719,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130430,34 +141798,59 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 """ @@ -130596,47 +141989,82 @@ 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( + """ + 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -130648,19 +142076,32 @@ 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( + """ + 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. """ @@ -130668,35 +142109,61 @@ 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( + """ + 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(""" - 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( + """ + 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. """ @@ -130704,17 +142171,28 @@ 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( + """ + 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. """ @@ -130730,19 +142208,32 @@ 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( + """ + 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. """ @@ -130762,19 +142253,32 @@ 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( + """ + 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. """ @@ -130782,19 +142286,32 @@ 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( + """ + 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. """ @@ -130802,19 +142319,32 @@ 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( + """ + 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. """ @@ -130822,19 +142352,32 @@ 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( + """ + 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. """ @@ -130846,19 +142389,32 @@ 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( + """ + 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. """ @@ -130866,19 +142422,32 @@ 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( + """ + 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. """ @@ -130886,87 +142455,156 @@ 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( + """ + 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -130974,19 +142612,32 @@ 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( + """ + 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. """ @@ -130994,19 +142645,32 @@ 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( + """ + 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. """ @@ -131014,19 +142678,32 @@ 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( + """ + 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. """ @@ -131034,19 +142711,32 @@ 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( + """ + 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 { @@ -131164,13 +142854,18 @@ type GitHubEnterpriseOrganizationMembershipConnection { """ An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations. """ -type GitHubEnterpriseUserAccount implements OneGraphNode & GitHubNode & GitHubActor { +type GitHubEnterpriseUserAccount implements OneGraphNode & + GitHubNode & + GitHubActor { """ A URL pointing to the enterprise user account's public avatar. """ - avatarUrl(""" - The size of the resulting square image. - """ size: Int): String! + avatarUrl( + """ + The size of the resulting square image. + """ + size: Int + ): String! """ Identifies the date and time when the object was created. """ @@ -131194,21 +142889,36 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -131225,9 +142935,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131295,7 +143008,9 @@ 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.") + @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. """ @@ -131312,7 +143027,9 @@ 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.") + @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. """ @@ -131342,9 +143059,12 @@ 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( + """ + The size of the resulting square image. + """ + size: Int + ): String! """ Enterprise billing information visible to enterprise billing managers. """ @@ -131376,25 +143096,44 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -131402,19 +143141,32 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -131434,15 +143186,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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? """ @@ -131451,9 +143212,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131497,9 +143261,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131554,9 +143321,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131610,15 +143380,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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! """ """ @@ -131643,9 +143422,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131684,9 +143466,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131717,9 +143502,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131754,9 +143542,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131859,20 +143650,34 @@ 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( + """ + 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 """ @@ -131943,19 +143748,32 @@ 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( + """ + 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! } """ @@ -132002,9 +143820,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132022,33 +143843,57 @@ 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( + """ + 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(""" - 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( + """ + 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 { @@ -132078,7 +143923,9 @@ 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.") + @deprecated( + reason: "`Sponsorship.maintainer` will be removed. Use `Sponsorship.sponsorable` instead. Removal on 2020-04-01 UTC." + ) """ The privacy level for this sponsorship. """ @@ -132095,9 +143942,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132107,7 +143957,10 @@ type GitHubSponsorship implements OneGraphNode & GitHubNode { """ Audit log entry for a org.add_billing_manager """ -type GitHubOrgAddBillingManagerAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgAddBillingManagerAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -132184,9 +144037,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132207,7 +144063,10 @@ enum GitHubOrgAddMemberAuditEntryPermission { """ Audit log entry for a org.add_member """ -type GitHubOrgAddMemberAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgAddMemberAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -132284,9 +144143,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132296,7 +144158,10 @@ type GitHubOrgAddMemberAuditEntry implements OneGraphNode & GitHubOrganizationAu """ Audit log entry for a org.block_user """ -type GitHubOrgBlockUserAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgBlockUserAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -132385,9 +144250,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132397,7 +144265,10 @@ type GitHubOrgBlockUserAuditEntry implements OneGraphNode & GitHubOrganizationAu """ Audit log entry for a org.config.disable_collaborators_only event. """ -type GitHubOrgConfigDisableCollaboratorsOnlyAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgConfigDisableCollaboratorsOnlyAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -132470,9 +144341,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132482,7 +144356,10 @@ type GitHubOrgConfigDisableCollaboratorsOnlyAuditEntry implements OneGraphNode & """ Audit log entry for a org.config.enable_collaborators_only event. """ -type GitHubOrgConfigEnableCollaboratorsOnlyAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgConfigEnableCollaboratorsOnlyAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -132555,9 +144432,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132590,7 +144470,10 @@ enum GitHubOrgCreateAuditEntryBillingPlan { """ Audit log entry for a org.create event. """ -type GitHubOrgCreateAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgCreateAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -132667,9 +144550,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132679,7 +144565,10 @@ type GitHubOrgCreateAuditEntry implements OneGraphNode & GitHubOrganizationAudit """ Audit log entry for a org.disable_oauth_app_restrictions event. """ -type GitHubOrgDisableOauthAppRestrictionsAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgDisableOauthAppRestrictionsAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -132752,9 +144641,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132764,7 +144656,10 @@ type GitHubOrgDisableOauthAppRestrictionsAuditEntry implements OneGraphNode & Gi """ Audit log entry for a org.disable_saml event. """ -type GitHubOrgDisableSamlAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgDisableSamlAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -132853,9 +144748,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132865,7 +144763,10 @@ type GitHubOrgDisableSamlAuditEntry implements OneGraphNode & GitHubOrganization """ Audit log entry for a org.disable_two_factor_requirement event. """ -type GitHubOrgDisableTwoFactorRequirementAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgDisableTwoFactorRequirementAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -132938,9 +144839,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132950,7 +144854,10 @@ type GitHubOrgDisableTwoFactorRequirementAuditEntry implements OneGraphNode & Gi """ Audit log entry for a org.enable_oauth_app_restrictions event. """ -type GitHubOrgEnableOauthAppRestrictionsAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgEnableOauthAppRestrictionsAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -133023,9 +144930,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133035,7 +144945,10 @@ type GitHubOrgEnableOauthAppRestrictionsAuditEntry implements OneGraphNode & Git """ Audit log entry for a org.enable_saml event. """ -type GitHubOrgEnableSamlAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgEnableSamlAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -133124,9 +145037,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133136,7 +145052,10 @@ type GitHubOrgEnableSamlAuditEntry implements OneGraphNode & GitHubOrganizationA """ Audit log entry for a org.enable_two_factor_requirement event. """ -type GitHubOrgEnableTwoFactorRequirementAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgEnableTwoFactorRequirementAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -133209,9 +145128,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133221,7 +145143,10 @@ type GitHubOrgEnableTwoFactorRequirementAuditEntry implements OneGraphNode & Git """ Audit log entry for a org.invite_member event. """ -type GitHubOrgInviteMemberAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgInviteMemberAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -133302,9 +145227,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133329,7 +145257,11 @@ enum GitHubOauthApplicationCreateAuditEntryState { """ Audit log entry for a oauth_application.create event. """ -type GitHubOauthApplicationCreateAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubOauthApplicationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOauthApplicationCreateAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubOauthApplicationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -133430,9 +145362,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133442,7 +145377,11 @@ type GitHubOauthApplicationCreateAuditEntry implements OneGraphNode & GitHubOrga """ Audit log entry for a org.oauth_app_access_approved event. """ -type GitHubOrgOauthAppAccessApprovedAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubOauthApplicationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgOauthAppAccessApprovedAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubOauthApplicationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -133527,9 +145466,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133539,7 +145481,11 @@ type GitHubOrgOauthAppAccessApprovedAuditEntry implements OneGraphNode & GitHubO """ Audit log entry for a org.oauth_app_access_denied event. """ -type GitHubOrgOauthAppAccessDeniedAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubOauthApplicationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgOauthAppAccessDeniedAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubOauthApplicationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -133624,9 +145570,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133654,7 +145603,11 @@ interface GitHubOauthApplicationAuditEntryData { """ Audit log entry for a org.oauth_app_access_requested event. """ -type GitHubOrgOauthAppAccessRequestedAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubOauthApplicationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgOauthAppAccessRequestedAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubOauthApplicationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -133739,9 +145692,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133766,7 +145722,10 @@ enum GitHubOrgRemoveBillingManagerAuditEntryReason { """ Audit log entry for a org.remove_billing_manager event. """ -type GitHubOrgRemoveBillingManagerAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgRemoveBillingManagerAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -133843,9 +145802,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133893,7 +145855,10 @@ enum GitHubOrgRemoveMemberAuditEntryMembershipType { """ Audit log entry for a org.remove_member event. """ -type GitHubOrgRemoveMemberAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgRemoveMemberAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -133974,9 +145939,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134012,7 +145980,10 @@ enum GitHubOrgRemoveOutsideCollaboratorAuditEntryMembershipType { """ Audit log entry for a org.remove_outside_collaborator event. """ -type GitHubOrgRemoveOutsideCollaboratorAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgRemoveOutsideCollaboratorAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -134093,9 +146064,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134171,12 +146145,18 @@ type GitHubOrgRestoreMemberMembershipTeamAuditEntryData implements GitHubTeamAud """ Types of memberships that can be restored for an Organization member. """ -union GitHubOrgRestoreMemberAuditEntryMembership = GitHubOrgRestoreMemberMembershipTeamAuditEntryData | GitHubOrgRestoreMemberMembershipRepositoryAuditEntryData | GitHubOrgRestoreMemberMembershipOrganizationAuditEntryData +union GitHubOrgRestoreMemberAuditEntryMembership = + | GitHubOrgRestoreMemberMembershipTeamAuditEntryData + | GitHubOrgRestoreMemberMembershipRepositoryAuditEntryData + | GitHubOrgRestoreMemberMembershipOrganizationAuditEntryData """ Audit log entry for a org.restore_member event. """ -type GitHubOrgRestoreMemberAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgRestoreMemberAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -134277,9 +146257,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134289,7 +146272,10 @@ type GitHubOrgRestoreMemberAuditEntry implements OneGraphNode & GitHubOrganizati """ Audit log entry for a org.unblock_user """ -type GitHubOrgUnblockUserAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgUnblockUserAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -134378,9 +146364,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134409,7 +146398,10 @@ enum GitHubOrgUpdateDefaultRepositoryPermissionAuditEntryPermission { """ Audit log entry for a org.update_default_repository_permission """ -type GitHubOrgUpdateDefaultRepositoryPermissionAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgUpdateDefaultRepositoryPermissionAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -134490,9 +146482,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134513,7 +146508,10 @@ enum GitHubOrgUpdateMemberAuditEntryPermission { """ Audit log entry for a org.update_member event. """ -type GitHubOrgUpdateMemberAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgUpdateMemberAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -134594,9 +146592,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134617,7 +146618,10 @@ enum GitHubOrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility { """ Audit log entry for a org.update_member_repository_creation_permission event. """ -type GitHubOrgUpdateMemberRepositoryCreationPermissionAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgUpdateMemberRepositoryCreationPermissionAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -134698,9 +146702,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134710,7 +146717,10 @@ type GitHubOrgUpdateMemberRepositoryCreationPermissionAuditEntry implements OneG """ Audit log entry for a org.update_member_repository_invitation_permission event. """ -type GitHubOrgUpdateMemberRepositoryInvitationPermissionAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubOrgUpdateMemberRepositoryInvitationPermissionAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -134787,9 +146797,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134814,7 +146827,11 @@ enum GitHubRepoAccessAuditEntryVisibility { """ Audit log entry for a repo.access event. """ -type GitHubRepoAccessAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoAccessAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -134907,9 +146924,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134934,7 +146954,11 @@ enum GitHubRepoAddMemberAuditEntryVisibility { """ Audit log entry for a repo.add_member event. """ -type GitHubRepoAddMemberAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoAddMemberAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -135027,9 +147051,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135054,7 +147081,11 @@ enum GitHubRepoArchivedAuditEntryVisibility { """ Audit log entry for a repo.archived event. """ -type GitHubRepoArchivedAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoArchivedAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -135147,9 +147178,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135174,7 +147208,11 @@ enum GitHubRepoChangeMergeSettingAuditEntryMergeType { """ Audit log entry for a repo.change_merge_setting event. """ -type GitHubRepoChangeMergeSettingAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoChangeMergeSettingAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -135271,9 +147309,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135283,7 +147324,11 @@ type GitHubRepoChangeMergeSettingAuditEntry implements OneGraphNode & GitHubRepo """ Audit log entry for a repo.config.disable_anonymous_git_access event. """ -type GitHubRepoConfigDisableAnonymousGitAccessAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoConfigDisableAnonymousGitAccessAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -135372,9 +147417,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135384,7 +147432,11 @@ type GitHubRepoConfigDisableAnonymousGitAccessAuditEntry implements OneGraphNode """ Audit log entry for a repo.config.disable_collaborators_only event. """ -type GitHubRepoConfigDisableCollaboratorsOnlyAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoConfigDisableCollaboratorsOnlyAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -135473,9 +147525,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135485,7 +147540,11 @@ type GitHubRepoConfigDisableCollaboratorsOnlyAuditEntry implements OneGraphNode """ Audit log entry for a repo.config.disable_contributors_only event. """ -type GitHubRepoConfigDisableContributorsOnlyAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoConfigDisableContributorsOnlyAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -135574,9 +147633,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135586,7 +147648,11 @@ type GitHubRepoConfigDisableContributorsOnlyAuditEntry implements OneGraphNode & """ Audit log entry for a repo.config.disable_sockpuppet_disallowed event. """ -type GitHubRepoConfigDisableSockpuppetDisallowedAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoConfigDisableSockpuppetDisallowedAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -135675,9 +147741,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135687,7 +147756,11 @@ type GitHubRepoConfigDisableSockpuppetDisallowedAuditEntry implements OneGraphNo """ Audit log entry for a repo.config.enable_anonymous_git_access event. """ -type GitHubRepoConfigEnableAnonymousGitAccessAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoConfigEnableAnonymousGitAccessAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -135776,9 +147849,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135788,7 +147864,11 @@ type GitHubRepoConfigEnableAnonymousGitAccessAuditEntry implements OneGraphNode """ Audit log entry for a repo.config.enable_collaborators_only event. """ -type GitHubRepoConfigEnableCollaboratorsOnlyAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoConfigEnableCollaboratorsOnlyAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -135877,9 +147957,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135889,7 +147972,11 @@ type GitHubRepoConfigEnableCollaboratorsOnlyAuditEntry implements OneGraphNode & """ Audit log entry for a repo.config.enable_contributors_only event. """ -type GitHubRepoConfigEnableContributorsOnlyAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoConfigEnableContributorsOnlyAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -135978,9 +148065,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135990,7 +148080,11 @@ type GitHubRepoConfigEnableContributorsOnlyAuditEntry implements OneGraphNode & """ Audit log entry for a repo.config.enable_sockpuppet_disallowed event. """ -type GitHubRepoConfigEnableSockpuppetDisallowedAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoConfigEnableSockpuppetDisallowedAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -136079,9 +148173,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136091,7 +148188,11 @@ type GitHubRepoConfigEnableSockpuppetDisallowedAuditEntry implements OneGraphNod """ Audit log entry for a repo.config.lock_anonymous_git_access event. """ -type GitHubRepoConfigLockAnonymousGitAccessAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoConfigLockAnonymousGitAccessAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -136180,9 +148281,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136192,7 +148296,11 @@ type GitHubRepoConfigLockAnonymousGitAccessAuditEntry implements OneGraphNode & """ Audit log entry for a repo.config.unlock_anonymous_git_access event. """ -type GitHubRepoConfigUnlockAnonymousGitAccessAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoConfigUnlockAnonymousGitAccessAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -136281,9 +148389,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136308,7 +148419,11 @@ enum GitHubRepoCreateAuditEntryVisibility { """ Audit log entry for a repo.create event. """ -type GitHubRepoCreateAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoCreateAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -136409,9 +148524,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136436,7 +148554,11 @@ enum GitHubRepoDestroyAuditEntryVisibility { """ Audit log entry for a repo.destroy event. """ -type GitHubRepoDestroyAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoDestroyAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -136529,9 +148651,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136556,7 +148681,11 @@ enum GitHubRepoRemoveMemberAuditEntryVisibility { """ Audit log entry for a repo.remove_member event. """ -type GitHubRepoRemoveMemberAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoRemoveMemberAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -136649,9 +148778,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136661,7 +148793,11 @@ type GitHubRepoRemoveMemberAuditEntry implements OneGraphNode & GitHubRepository """ Audit log entry for a members_can_delete_repos.clear event. """ -type GitHubMembersCanDeleteReposClearAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubEnterpriseAuditEntryData & GitHubAuditEntry { +type GitHubMembersCanDeleteReposClearAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubEnterpriseAuditEntryData & + GitHubAuditEntry { """ The action name """ @@ -136746,9 +148882,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136758,7 +148897,11 @@ type GitHubMembersCanDeleteReposClearAuditEntry implements OneGraphNode & GitHub """ Audit log entry for a members_can_delete_repos.disable event. """ -type GitHubMembersCanDeleteReposDisableAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubEnterpriseAuditEntryData & GitHubAuditEntry { +type GitHubMembersCanDeleteReposDisableAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubEnterpriseAuditEntryData & + GitHubAuditEntry { """ The action name """ @@ -136843,9 +148986,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136855,7 +149001,11 @@ type GitHubMembersCanDeleteReposDisableAuditEntry implements OneGraphNode & GitH """ Audit log entry for a members_can_delete_repos.enable event. """ -type GitHubMembersCanDeleteReposEnableAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubEnterpriseAuditEntryData & GitHubAuditEntry { +type GitHubMembersCanDeleteReposEnableAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubEnterpriseAuditEntryData & + GitHubAuditEntry { """ The action name """ @@ -136940,9 +149090,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136952,7 +149105,11 @@ type GitHubMembersCanDeleteReposEnableAuditEntry implements OneGraphNode & GitHu """ Audit log entry for a org.invite_to_business event. """ -type GitHubOrgInviteToBusinessAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubEnterpriseAuditEntryData & GitHubAuditEntry { +type GitHubOrgInviteToBusinessAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubEnterpriseAuditEntryData & + GitHubAuditEntry { """ The action name """ @@ -137037,9 +149194,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -137049,7 +149209,12 @@ type GitHubOrgInviteToBusinessAuditEntry implements OneGraphNode & GitHubOrganiz """ Audit log entry for a private_repository_forking.disable event. """ -type GitHubPrivateRepositoryForkingDisableAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubEnterpriseAuditEntryData & GitHubAuditEntry { +type GitHubPrivateRepositoryForkingDisableAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubEnterpriseAuditEntryData & + GitHubAuditEntry { """ The action name """ @@ -137150,9 +149315,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -137162,7 +149330,12 @@ type GitHubPrivateRepositoryForkingDisableAuditEntry implements OneGraphNode & G """ Audit log entry for a private_repository_forking.enable event. """ -type GitHubPrivateRepositoryForkingEnableAuditEntry implements OneGraphNode & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubEnterpriseAuditEntryData & GitHubAuditEntry { +type GitHubPrivateRepositoryForkingEnableAuditEntry implements OneGraphNode & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubEnterpriseAuditEntryData & + GitHubAuditEntry { """ The action name """ @@ -137263,9 +149436,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -137275,7 +149451,11 @@ type GitHubPrivateRepositoryForkingEnableAuditEntry implements OneGraphNode & Gi """ Audit log entry for a repository_visibility_change.disable event. """ -type GitHubRepositoryVisibilityChangeDisableAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubEnterpriseAuditEntryData & GitHubAuditEntry { +type GitHubRepositoryVisibilityChangeDisableAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubEnterpriseAuditEntryData & + GitHubAuditEntry { """ The action name """ @@ -137360,9 +149540,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -137390,7 +149573,11 @@ interface GitHubEnterpriseAuditEntryData { """ Audit log entry for a repository_visibility_change.enable event. """ -type GitHubRepositoryVisibilityChangeEnableAuditEntry implements OneGraphNode & GitHubOrganizationAuditEntryData & GitHubNode & GitHubEnterpriseAuditEntryData & GitHubAuditEntry { +type GitHubRepositoryVisibilityChangeEnableAuditEntry implements OneGraphNode & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubEnterpriseAuditEntryData & + GitHubAuditEntry { """ The action name """ @@ -137475,9 +149662,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -137487,7 +149677,11 @@ type GitHubRepositoryVisibilityChangeEnableAuditEntry implements OneGraphNode & """ Audit log entry for a team.add_member event. """ -type GitHubTeamAddMemberAuditEntry implements OneGraphNode & GitHubTeamAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubTeamAddMemberAuditEntry implements OneGraphNode & + GitHubTeamAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -137580,9 +149774,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -137650,7 +149847,12 @@ interface GitHubAuditEntry { """ Audit log entry for a repo.add_topic event. """ -type GitHubRepoAddTopicAuditEntry implements OneGraphNode & GitHubTopicAuditEntryData & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoAddTopicAuditEntry implements OneGraphNode & + GitHubTopicAuditEntryData & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -137747,9 +149949,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -137773,7 +149978,12 @@ interface GitHubTopicAuditEntryData { """ Audit log entry for a repo.remove_topic event. """ -type GitHubRepoRemoveTopicAuditEntry implements OneGraphNode & GitHubTopicAuditEntryData & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubRepoRemoveTopicAuditEntry implements OneGraphNode & + GitHubTopicAuditEntryData & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -137870,9 +150080,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -137904,7 +150117,12 @@ interface GitHubRepositoryAuditEntryData { """ Audit log entry for a team.add_repository event. """ -type GitHubTeamAddRepositoryAuditEntry implements OneGraphNode & GitHubTeamAuditEntryData & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubTeamAddRepositoryAuditEntry implements OneGraphNode & + GitHubTeamAuditEntryData & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -138013,9 +150231,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -138047,7 +150268,11 @@ interface GitHubOrganizationAuditEntryData { """ Audit log entry for a team.change_parent_team event. """ -type GitHubTeamChangeParentTeamAuditEntry implements OneGraphNode & GitHubTeamAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubTeamChangeParentTeamAuditEntry implements OneGraphNode & + GitHubTeamAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -138172,9 +150397,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -138263,7 +150491,11 @@ type GitHubActorLocation { """ Audit log entry for a team.remove_member event. """ -type GitHubTeamRemoveMemberAuditEntry implements OneGraphNode & GitHubTeamAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubTeamRemoveMemberAuditEntry implements OneGraphNode & + GitHubTeamAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -138356,9 +150588,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -138385,9 +150620,12 @@ type GitHubBaseRefChangedEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -138531,15 +150769,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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! """ """ @@ -138548,9 +150795,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -138592,9 +150842,12 @@ 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( + """ + The size of the resulting square image. + """ + size: Int + ): String """ This commit this status context is attached to. """ @@ -138627,9 +150880,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -138647,9 +150903,12 @@ type GitHubStatus implements OneGraphNode & GitHubNode { """ Looks up an individual status context by context name. """ - context(""" - The context name. - """ name: String!): GitHubStatusContext + context( + """ + The context name. + """ + name: String! + ): GitHubStatusContext """ The individual status contexts for this commit. """ @@ -138662,9 +150921,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -139396,9 +151658,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -139557,28 +151822,51 @@ 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( + """ + 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." + ) } """ @@ -139592,20 +151880,35 @@ 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( + """ + 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." + ) } """ @@ -139707,9 +152010,12 @@ 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( + """ + How many characters to return. + """ + limit: Int + ): String! """ Identifies the date and time when the object was last updated. """ @@ -139986,15 +152292,22 @@ 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.") + @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! + @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! """ Unique id across all of OneGraph """ @@ -140045,27 +152358,37 @@ 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.") + @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.") + @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.") + @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.") + @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.") + @deprecated( + reason: "Renaming GitHub Packages fields and objects. Use the `PackageStatistics` object instead. Removal on 2020-04-01 UTC." + ) } """ @@ -140143,27 +152466,37 @@ 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.") + @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.") + @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.") + @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.") + @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.") + @deprecated( + reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersionStatistics` object instead. Removal on 2020-04-01 UTC." + ) } """ @@ -140210,7 +152543,9 @@ 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.") + @deprecated( + reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC." + ) """ """ @@ -140219,37 +152554,51 @@ 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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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. """ @@ -140258,10 +152607,15 @@ 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! + @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! """ Unique id across all of OneGraph """ @@ -140303,7 +152657,9 @@ 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.") + @deprecated( + reason: "Renaming GitHub Packages fields and objects. Use the `PackageDependency` object instead. Removal on 2020-04-01 UTC." + ) """ """ @@ -140312,15 +152668,22 @@ 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.") + @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! + @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! """ Unique id across all of OneGraph """ @@ -140370,38 +152733,67 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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." + ) """ """ @@ -140410,80 +152802,113 @@ 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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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! + @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! """ Unique id across all of OneGraph """ @@ -140498,7 +152923,9 @@ 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.") + @deprecated( + reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC." + ) """ """ @@ -140507,144 +152934,245 @@ 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.") + @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.") + @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.") + @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( + """ + 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(""" - 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( + """ + 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. """ packageType: GitHubRegistryPackageType! - @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") + @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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ registryPackageType: String - @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") + @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.") + @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.") + @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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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! """ Unique id across all of OneGraph """ @@ -140821,9 +153349,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -140837,9 +153368,12 @@ type GitHubGitActor { """ A URL pointing to the author's public avatar. """ - avatarUrl(""" - The size of the resulting square image. - """ size: Int): String! + avatarUrl( + """ + The size of the resulting square image. + """ + size: Int + ): String! """ The timestamp of the Git action (authoring or committing). """ @@ -140902,9 +153436,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -141003,9 +153540,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -141212,9 +153752,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -141531,9 +154074,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -141700,9 +154246,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -141725,9 +154274,12 @@ type GitHubReviewDismissalAllowance implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -141777,28 +154329,44 @@ 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( + """ + 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! } """ Types that can grant permissions on a repository to a user """ -union GitHubPermissionGranter = GitHubTeam | GitHubRepository | GitHubOrganization +union GitHubPermissionGranter = + | GitHubTeam + | GitHubRepository + | GitHubOrganization """ Represents a 'ready_for_review' event on a given pull request. """ -type GitHubReadyForReviewEvent implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode { +type GitHubReadyForReviewEvent implements OneGraphNode & + GitHubUniformResourceLocatable & + GitHubNode { """ Identifies the actor who performed the event. """ @@ -141823,9 +154391,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -141880,9 +154451,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -141928,7 +154502,9 @@ type GitHubReleaseAssetConnection { """ A release contains the content for a release. """ -type GitHubRelease implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode { +type GitHubRelease implements OneGraphNode & + GitHubUniformResourceLocatable & + GitHubNode { """ The author of the release """ @@ -141968,17 +154544,28 @@ 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( + """ + 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 """ @@ -141986,9 +154573,12 @@ 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( + """ + How many characters to return. + """ + limit: Int + ): String """ The Git tag the release points to """ @@ -142005,9 +154595,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -142017,7 +154610,9 @@ type GitHubRelease implements OneGraphNode & GitHubUniformResourceLocatable & Gi """ A repository-topic connects a repository to a topic. """ -type GitHubRepositoryTopic implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode { +type GitHubRepositoryTopic implements OneGraphNode & + GitHubUniformResourceLocatable & + GitHubNode { """ """ @@ -142034,9 +154629,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -142088,9 +154686,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -142124,9 +154725,12 @@ type GitHubApp implements OneGraphNode & GitHubNode { """ A URL pointing to the app's logo. """ - logoUrl(""" - The size of the resulting image. - """ size: Int): String! + logoUrl( + """ + The size of the resulting image. + """ + size: Int + ): String! """ The name of the app. """ @@ -142143,9 +154747,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -142196,7 +154803,9 @@ 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.") + @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? """ @@ -142229,7 +154838,9 @@ 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.") + @deprecated( + reason: "`isApproved` will be removed. Use `isPublic` instead. Removal on 2019-10-01 UTC." + ) """ Whether this listing has been removed from the Marketplace. """ @@ -142238,7 +154849,9 @@ 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.") + @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. """ @@ -142282,9 +154895,12 @@ 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( + """ + The size in pixels of the resulting square image. + """ + size: Int + ): String """ The listing's full name. """ @@ -142398,9 +155014,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -142410,7 +155029,14 @@ type GitHubMarketplaceListing implements OneGraphNode & GitHubNode { """ The results of a search. """ -union GitHubSearchResultItem = GitHubUser | GitHubRepository | GitHubPullRequest | GitHubOrganization | GitHubMarketplaceListing | GitHubIssue | GitHubApp +union GitHubSearchResultItem = + | GitHubUser + | GitHubRepository + | GitHubPullRequest + | GitHubOrganization + | GitHubMarketplaceListing + | GitHubIssue + | GitHubApp union StripeTransferReversalSourceRefundUnion = StripeRefund @@ -144896,9 +157522,11 @@ type StripeInvoiceLines { url: String! } -union StripeSubscriptionSchedulePhaseConfigurationDefaultPaymentMethodUnion = StripePaymentMethod +union StripeSubscriptionSchedulePhaseConfigurationDefaultPaymentMethodUnion = + | StripePaymentMethod -union StripeInvoiceSettingCustomerSettingDefaultPaymentMethodUnion = StripePaymentMethod +union StripeInvoiceSettingCustomerSettingDefaultPaymentMethodUnion = + | StripePaymentMethod union StripeSubscriptionScheduleDefaultPaymentMethodUnion = StripePaymentMethod @@ -145520,7 +158148,9 @@ type StripeDeletedPlan { object: StripeDeletedPlanObjectEnum! } -union StripeSubscriptionScheduleConfigurationItemPlanUnion = StripeDeletedPlan | StripePlan +union StripeSubscriptionScheduleConfigurationItemPlanUnion = + | StripeDeletedPlan + | StripePlan """ @@ -146528,9 +159158,19 @@ union StripeExternalAccountUnion = StripeBankAccount | StripeCard union StripeAccountExternalAccountsDataUnion = StripeCard | StripeBankAccount -union StripeCustomerDefaultSourceUnion = StripeSource | StripeCard | StripeBitcoinReceiver | StripeBankAccount | StripeAlipayAccount +union StripeCustomerDefaultSourceUnion = + | StripeSource + | StripeCard + | StripeBitcoinReceiver + | StripeBankAccount + | StripeAlipayAccount -union StripeInvoiceDefaultSourceUnion = StripeSource | StripeCard | StripeBitcoinReceiver | StripeBankAccount | StripeAlipayAccount +union StripeInvoiceDefaultSourceUnion = + | StripeSource + | StripeCard + | StripeBitcoinReceiver + | StripeBankAccount + | StripeAlipayAccount enum StripeAlipayAccountObjectEnum { alipay_account @@ -146590,7 +159230,13 @@ type StripeAlipayAccount { paymentAmount: Int } -union StripePaymentSourceUnion = StripeBankAccount | StripeAlipayAccount | StripeSource | StripeCard | StripeAccount | StripeBitcoinReceiver +union StripePaymentSourceUnion = + | StripeBankAccount + | StripeAlipayAccount + | StripeSource + | StripeCard + | StripeAccount + | StripeBitcoinReceiver enum StripeBitcoinReceiverTransactionsObjectEnum { list @@ -146754,7 +159400,12 @@ type StripeBitcoinReceiver { payment: String } -union StripeSubscriptionDefaultSourceUnion = StripeSource | StripeCard | StripeBitcoinReceiver | StripeBankAccount | StripeAlipayAccount +union StripeSubscriptionDefaultSourceUnion = + | StripeSource + | StripeCard + | StripeBitcoinReceiver + | StripeBankAccount + | StripeAlipayAccount enum StripeDeletedBitcoinReceiverObjectEnum { bitcoin_receiver @@ -146800,7 +159451,11 @@ type StripeDeletedAlipayAccount { object: StripeDeletedAlipayAccountObjectEnum! } -union StripeDeletedPaymentSourceUnion = StripeDeletedAlipayAccount | StripeDeletedCard | StripeDeletedBitcoinReceiver | StripeDeletedBankAccount +union StripeDeletedPaymentSourceUnion = + | StripeDeletedAlipayAccount + | StripeDeletedCard + | StripeDeletedBitcoinReceiver + | StripeDeletedBankAccount enum StripeDeletedBankAccountObjectEnum { bank_account @@ -146828,7 +159483,9 @@ type StripeDeletedBankAccount { object: StripeDeletedBankAccountObjectEnum! } -union StripeDeletedExternalAccountUnion = StripeDeletedCard | StripeDeletedBankAccount +union StripeDeletedExternalAccountUnion = + | StripeDeletedCard + | StripeDeletedBankAccount enum StripeDeletedCardObjectEnum { card @@ -146856,7 +159513,11 @@ type StripeDeletedCard { object: StripeDeletedCardObjectEnum! } -union StripePayoutDestinationUnion = StripeDeletedCard | StripeDeletedBankAccount | StripeCard | StripeBankAccount +union StripePayoutDestinationUnion = + | StripeDeletedCard + | StripeDeletedBankAccount + | StripeCard + | StripeBankAccount union StripeChargeCustomerUnion = StripeDeletedCustomer | StripeCustomer @@ -146868,7 +159529,9 @@ union StripeCardCustomerUnion = StripeDeletedCustomer | StripeCustomer union StripeAlipayAccountCustomerUnion = StripeDeletedCustomer | StripeCustomer -union StripeSubscriptionScheduleCustomerUnion = StripeDeletedCustomer | StripeCustomer +union StripeSubscriptionScheduleCustomerUnion = + | StripeDeletedCustomer + | StripeCustomer union StripeDiscountCustomerUnion = StripeDeletedCustomer | StripeCustomer @@ -148149,7 +160812,12 @@ type StripeSource { cardPresent: StripeSourceTypeCardPresent } -union StripeCustomerSourcesDataUnion = StripeSource | StripeCard | StripeBitcoinReceiver | StripeBankAccount | StripeAlipayAccount +union StripeCustomerSourcesDataUnion = + | StripeSource + | StripeCard + | StripeBitcoinReceiver + | StripeBankAccount + | StripeAlipayAccount """ @@ -148434,15 +161102,24 @@ 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( + """ + 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 } """ @@ -148817,11 +161494,16 @@ union SalesforceOpenActivityWhoUnion = SalesforceLead | SalesforceContact union SalesforceEmailStatusWhoUnion = SalesforceLead | SalesforceContact -union SalesforceLookedUpFromActivityWhoUnion = SalesforceLead | SalesforceContact +union SalesforceLookedUpFromActivityWhoUnion = + | SalesforceLead + | SalesforceContact union SalesforceActivityHistoryWhoUnion = SalesforceLead | SalesforceContact -union SalesforceOutgoingEmailRelationRelationUnion = SalesforceUser | SalesforceLead | SalesforceContact +union SalesforceOutgoingEmailRelationRelationUnion = + | SalesforceUser + | SalesforceLead + | SalesforceContact """ A filter to be used against WaveCompatibilityCheckItem object types. All fields are combined with a logical ‘and.’ @@ -159387,17 +172069,25 @@ type SalesforceForecastShareEdge { union SalesforceCaseOwnerUnion = SalesforceUser | SalesforceGroup -union SalesforceFieldDefinitionBusinessOwnerUnion = SalesforceUser | SalesforceGroup +union SalesforceFieldDefinitionBusinessOwnerUnion = + | SalesforceUser + | SalesforceGroup union SalesforceUserDelegatedApproverUnion = SalesforceUser | SalesforceGroup -union SalesforceEntityDefinitionDataStewardUnion = SalesforceUser | SalesforceGroup +union SalesforceEntityDefinitionDataStewardUnion = + | SalesforceUser + | SalesforceGroup union SalesforceLeadOwnerUnion = SalesforceUser | SalesforceGroup -union SalesforceProcessInstanceHistoryOriginalActorUnion = SalesforceUser | SalesforceGroup +union SalesforceProcessInstanceHistoryOriginalActorUnion = + | SalesforceUser + | SalesforceGroup -union SalesforceProcessInstanceHistoryActorUnion = SalesforceUser | SalesforceGroup +union SalesforceProcessInstanceHistoryActorUnion = + | SalesforceUser + | SalesforceGroup """ A filter to be used against UserShare object types. All fields are combined with a logical ‘and.’ @@ -162822,22 +175512,38 @@ 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( + """ + 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! } """ @@ -163503,7 +176209,9 @@ type SalesforceContentWorkspaceDocsConnection { edges: [SalesforceContentWorkspaceDocEdge!]! } -union SalesforceStreamingChannelShareUserOrGroupUnion = SalesforceUser | SalesforceGroup +union SalesforceStreamingChannelShareUserOrGroupUnion = + | SalesforceUser + | SalesforceGroup """ Streaming Channel Share @@ -163553,12 +176261,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163625,12 +176339,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163661,12 +176381,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163741,12 +176467,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163803,12 +176535,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + 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,12 +176589,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163967,12 +176711,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164041,19 +176791,27 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ oneGraphId: ID! } -union SalesforceUserAppMenuCustomizationShareUserOrGroupUnion = SalesforceUser | SalesforceGroup +union SalesforceUserAppMenuCustomizationShareUserOrGroupUnion = + | SalesforceUser + | SalesforceGroup """ UserAppMenuCustomization Share @@ -164103,12 +176861,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164279,19 +177043,27 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ oneGraphId: ID! } -union SalesforceUserProvisioningRequestShareUserOrGroupUnion = SalesforceUser | SalesforceGroup +union SalesforceUserProvisioningRequestShareUserOrGroupUnion = + | SalesforceUser + | SalesforceGroup """ User Provisioning Request Share @@ -164341,12 +177113,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164405,12 +177183,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164461,12 +177245,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164517,12 +177307,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164577,19 +177373,27 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ oneGraphId: ID! } -union SalesforceFlowInterviewShareUserOrGroupUnion = SalesforceUser | SalesforceGroup +union SalesforceFlowInterviewShareUserOrGroupUnion = + | SalesforceUser + | SalesforceGroup """ Flow Interview Share @@ -164639,19 +177443,27 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ oneGraphId: ID! } -union SalesforceOrgDeleteRequestShareUserOrGroupUnion = SalesforceUser | SalesforceGroup +union SalesforceOrgDeleteRequestShareUserOrGroupUnion = + | SalesforceUser + | SalesforceGroup """ Org Delete Request Share @@ -164701,19 +177513,27 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ oneGraphId: ID! } -union SalesforceQuickTextShareUserOrGroupUnion = SalesforceUser | SalesforceGroup +union SalesforceQuickTextShareUserOrGroupUnion = + | SalesforceUser + | SalesforceGroup """ Quick Text Share @@ -164763,12 +177583,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164831,12 +177657,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164891,12 +177723,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164935,12 +177773,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164987,12 +177831,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165067,12 +177917,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165095,12 +177951,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165219,12 +178081,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165263,12 +178131,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165339,12 +178213,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165395,12 +178275,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165463,12 +178349,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165507,12 +178399,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165684,12 +178582,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165777,41 +178681,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -165888,12 +178824,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165980,12 +178922,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166020,12 +178968,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166076,12 +179030,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166168,12 +179128,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166252,12 +179218,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166340,12 +179312,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166670,25 +179648,44 @@ 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( + """ + 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 """ @@ -166791,12 +179788,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166853,12 +179856,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166915,12 +179924,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167148,25 +180163,44 @@ 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( + """ + 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 """ @@ -167225,12 +180259,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167289,12 +180329,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167333,12 +180379,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167369,12 +180421,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167469,12 +180527,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167525,19 +180589,27 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ oneGraphId: ID! } -union SalesforceListEmailShareUserOrGroupUnion = SalesforceUser | SalesforceGroup +union SalesforceListEmailShareUserOrGroupUnion = + | SalesforceUser + | SalesforceGroup """ List Email Share @@ -167587,12 +180659,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167907,25 +180985,44 @@ 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( + """ + 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 """ @@ -168003,32 +181100,53 @@ 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceTodayGoalShareUserOrGroupUnion = SalesforceUser | SalesforceGroup +union SalesforceTodayGoalShareUserOrGroupUnion = + | SalesforceUser + | SalesforceGroup """ Goal Share @@ -168078,12 +181196,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -168146,12 +181270,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -168388,12 +181518,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -168441,25 +181577,44 @@ 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( + """ + 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 """ @@ -168516,12 +181671,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -168564,12 +181725,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -168640,12 +181807,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -168692,12 +181865,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -168748,12 +181927,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -168843,25 +182028,44 @@ 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( + """ + 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 """ @@ -168916,19 +182120,27 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ oneGraphId: ID! } -union SalesforceCaseTeamTemplateMemberMemberUnion = SalesforceUser | SalesforceContact +union SalesforceCaseTeamTemplateMemberMemberUnion = + | SalesforceUser + | SalesforceContact """ Predefined Case Team Member @@ -168990,12 +182202,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169032,12 +182250,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169088,12 +182312,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169140,12 +182370,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169212,12 +182448,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169274,12 +182516,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169559,25 +182807,44 @@ 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( + """ + 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 """ @@ -169648,12 +182915,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169716,12 +182989,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169784,12 +183063,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169892,12 +183177,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -170213,25 +183504,44 @@ 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( + """ + 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 """ @@ -170302,12 +183612,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -170370,12 +183686,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -170533,12 +183855,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -170979,25 +184307,44 @@ 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( + """ + 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 """ @@ -171083,25 +184430,44 @@ 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( + """ + 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 """ @@ -171179,25 +184545,44 @@ 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( + """ + 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 """ @@ -171450,12 +184835,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -171559,25 +184950,44 @@ 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( + """ + 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 """ @@ -171763,12 +185173,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -172677,12 +186093,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -173127,41 +186549,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -173224,12 +186678,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -173603,12 +187063,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -173901,25 +187367,44 @@ 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( + """ + 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 """ @@ -174221,12 +187706,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -174459,25 +187950,44 @@ 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( + """ + 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 """ @@ -174540,12 +188050,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -175200,12 +188716,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -175337,25 +188859,44 @@ 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( + """ + 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 """ @@ -175943,25 +189484,44 @@ 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( + """ + 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 """ @@ -176035,25 +189595,44 @@ 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( + """ + 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 """ @@ -176385,41 +189964,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -176489,25 +190100,44 @@ 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( + """ + 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 """ @@ -176561,25 +190191,44 @@ 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( + """ + 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 """ @@ -176821,25 +190470,44 @@ 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( + """ + 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 """ @@ -176881,25 +190549,44 @@ 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( + """ + 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 """ @@ -177192,25 +190879,44 @@ 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( + """ + 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 """ @@ -177422,12 +191128,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -177562,105 +191274,189 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -177726,25 +191522,44 @@ 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( + """ + 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 """ @@ -177950,7 +191765,9 @@ type SalesforceContentWorkspaceMemberEdge { cursor: String! } -union SalesforceContentWorkspaceMemberMemberUnion = SalesforceUser | SalesforceGroup +union SalesforceContentWorkspaceMemberMemberUnion = + | SalesforceUser + | SalesforceGroup """ Library Member @@ -178000,12 +191817,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -178241,48 +192064,85 @@ 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceContentNotificationEntityIdentifierUnion = SalesforceUser | SalesforceContentWorkspacePermission | SalesforceContentWorkspace | SalesforceContentVersion | SalesforceContentDocument +union SalesforceContentNotificationEntityIdentifierUnion = + | SalesforceUser + | SalesforceContentWorkspacePermission + | SalesforceContentWorkspace + | SalesforceContentVersion + | SalesforceContentDocument """ Content Notification @@ -178331,25 +192191,44 @@ 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( + """ + 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 """ @@ -178391,25 +192270,44 @@ 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( + """ + 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 """ @@ -178455,25 +192353,44 @@ 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( + """ + 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 """ @@ -178523,25 +192440,44 @@ 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( + """ + 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 """ @@ -179090,7 +193026,7 @@ type SalesforceDandBCompany implements OneGraphNode { """ secondSic8: String """ - Second SIC8 Description + Second SIC8 Description """ secondSic8Desc: String """ @@ -179136,57 +193072,102 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -179615,41 +193596,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -179731,41 +193744,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -179835,25 +193880,44 @@ 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( + """ + 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 """ @@ -180140,25 +194204,44 @@ 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( + """ + 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 """ @@ -180262,41 +194345,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -180382,25 +194497,44 @@ 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( + """ + 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 """ @@ -180531,7 +194665,10 @@ type SalesforceVoteEdge { cursor: String! } -union SalesforceVoteParentUnion = SalesforceSolution | SalesforceIdeaComment | SalesforceIdea +union SalesforceVoteParentUnion = + | SalesforceSolution + | SalesforceIdeaComment + | SalesforceIdea """ Vote @@ -180585,12 +194722,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -180690,41 +194833,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -181160,41 +195335,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -181336,73 +195543,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -181740,25 +196005,44 @@ 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( + """ + 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 """ @@ -182111,12 +196395,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -182226,57 +196516,102 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -182358,25 +196693,44 @@ 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( + """ + 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 """ @@ -182470,25 +196824,44 @@ 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( + """ + 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 """ @@ -182691,12 +197064,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -182802,41 +197181,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -182930,25 +197341,44 @@ 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( + """ + 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 """ @@ -183002,25 +197432,44 @@ 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( + """ + 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 """ @@ -183096,25 +197545,44 @@ 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( + """ + 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 """ @@ -183176,25 +197644,44 @@ 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( + """ + 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 """ @@ -183268,25 +197755,44 @@ 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( + """ + 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 """ @@ -183491,25 +197997,44 @@ 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( + """ + 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 """ @@ -183653,9 +198178,13 @@ type SalesforceProcessInstanceWorkitemEdge { cursor: String! } -union SalesforceProcessInstanceWorkitemActorUnion = SalesforceUser | SalesforceGroup +union SalesforceProcessInstanceWorkitemActorUnion = + | SalesforceUser + | SalesforceGroup -union SalesforceProcessInstanceWorkitemOriginalActorUnion = SalesforceUser | SalesforceGroup +union SalesforceProcessInstanceWorkitemOriginalActorUnion = + | SalesforceUser + | SalesforceGroup """ Approval Request @@ -183721,12 +198250,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -183855,7 +198390,10 @@ type SalesforceDuplicateRecordItemEdge { cursor: String! } -union SalesforceDuplicateRecordItemRecordUnion = SalesforceLead | SalesforceContact | SalesforceAccount +union SalesforceDuplicateRecordItemRecordUnion = + | SalesforceLead + | SalesforceContact + | SalesforceAccount """ Duplicate Record Item @@ -183920,41 +198458,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -184276,25 +198846,44 @@ 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( + """ + 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 """ @@ -184368,57 +198957,102 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -184561,12 +199195,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -184717,12 +199357,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -185009,12 +199655,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -185355,25 +200007,44 @@ 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( + """ + 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 """ @@ -185580,12 +200251,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -185930,41 +200607,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -186079,7 +200788,9 @@ type SalesforceOpportunityShareEdge { cursor: String! } -union SalesforceOpportunityShareUserOrGroupUnion = SalesforceUser | SalesforceGroup +union SalesforceOpportunityShareUserOrGroupUnion = + | SalesforceUser + | SalesforceGroup """ Opportunity Share @@ -186129,12 +200840,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -186356,25 +201073,44 @@ 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( + """ + 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 """ @@ -186569,12 +201305,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -186725,12 +201467,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -187071,25 +201819,44 @@ 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( + """ + 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 """ @@ -187279,12 +202046,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -187616,25 +202389,44 @@ 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( + """ + 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 """ @@ -187838,12 +202630,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -188046,12 +202844,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -188563,9 +203367,13 @@ type SalesforceCampaignMemberEdge { cursor: String! } -union SalesforceCampaignMemberLeadOrContactOwnerUnion = SalesforceUser | SalesforceGroup +union SalesforceCampaignMemberLeadOrContactOwnerUnion = + | SalesforceUser + | SalesforceGroup -union SalesforceCampaignMemberLeadOrContactUnion = SalesforceLead | SalesforceContact +union SalesforceCampaignMemberLeadOrContactUnion = + | SalesforceLead + | SalesforceContact """ Campaign Member @@ -188746,25 +203554,44 @@ 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( + """ + 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 """ @@ -188915,12 +203742,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -189241,12 +204074,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -189425,7 +204264,10 @@ type SalesforceFeedItemEdge { cursor: String! } -union SalesforceFeedAttachmentRecordUnion = SalesforceFeedItem | SalesforceContentVersion | SalesforceContentDocument +union SalesforceFeedAttachmentRecordUnion = + | SalesforceFeedItem + | SalesforceContentVersion + | SalesforceContentDocument """ A filter to be used against FeedRevision object types. All fields are combined with a logical ‘and.’ @@ -189519,7 +204361,9 @@ type SalesforceFeedRevisionEdge { cursor: String! } -union SalesforceFeedRevisionFeedEntityUnion = SalesforceFeedItem | SalesforceFeedComment +union SalesforceFeedRevisionFeedEntityUnion = + | SalesforceFeedItem + | SalesforceFeedComment """ Feed Revision @@ -189580,25 +204424,44 @@ 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( + """ + 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 """ @@ -189749,12 +204612,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -189984,73 +204853,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -190144,73 +205071,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -190304,73 +205289,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -190464,73 +205507,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -190624,73 +205725,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -190784,73 +205943,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -190944,73 +206161,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -191127,7 +206402,10 @@ type SalesforceUndecidedEventRelationEdge { cursor: String! } -union SalesforceUndecidedEventRelationRelationUnion = SalesforceUser | SalesforceLead | SalesforceContact +union SalesforceUndecidedEventRelationRelationUnion = + | SalesforceUser + | SalesforceLead + | SalesforceContact """ Undecided Event Relation @@ -191197,12 +206475,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -191341,7 +206625,10 @@ type SalesforceEventRelationEdge { cursor: String! } -union SalesforceEventRelationRelationUnion = SalesforceUser | SalesforceLead | SalesforceContact +union SalesforceEventRelationRelationUnion = + | SalesforceUser + | SalesforceLead + | SalesforceContact """ Event Relation @@ -191414,25 +206701,44 @@ 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( + """ + 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 """ @@ -191707,7 +207013,10 @@ type SalesforceDeclinedEventRelationEdge { cursor: String! } -union SalesforceDeclinedEventRelationRelationUnion = SalesforceUser | SalesforceLead | SalesforceContact +union SalesforceDeclinedEventRelationRelationUnion = + | SalesforceUser + | SalesforceLead + | SalesforceContact """ Declined Event Relation @@ -191777,12 +207086,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -191921,7 +207236,10 @@ type SalesforceAcceptedEventRelationEdge { cursor: String! } -union SalesforceAcceptedEventRelationRelationUnion = SalesforceUser | SalesforceLead | SalesforceContact +union SalesforceAcceptedEventRelationRelationUnion = + | SalesforceUser + | SalesforceLead + | SalesforceContact """ Accepted Event Relation @@ -191991,12 +207309,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -192147,12 +207471,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -192382,73 +207712,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -192477,13 +207865,51 @@ type SalesforceAssetRelationshipFeedsConnection { edges: [SalesforceAssetRelationshipFeedEdge!]! } -union SalesforceNoteAndAttachmentParentUnion = SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceContract | SalesforceContact | SalesforceAsset | SalesforceAccount - -union SalesforceOpenActivityWhatUnion = SalesforceSolution | SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceContract | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount - -union SalesforceLookedUpFromActivityWhatUnion = SalesforceSolution | SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceContract | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount - -union SalesforceActivityHistoryWhatUnion = SalesforceSolution | SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceContract | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount +union SalesforceNoteAndAttachmentParentUnion = + | SalesforceProduct2 + | SalesforceOrder + | SalesforceOpportunity + | SalesforceLead + | SalesforceContract + | SalesforceContact + | SalesforceAsset + | SalesforceAccount + +union SalesforceOpenActivityWhatUnion = + | SalesforceSolution + | SalesforceProduct2 + | SalesforceOrder + | SalesforceOpportunity + | SalesforceContract + | SalesforceCase + | SalesforceCampaign + | SalesforceAssetRelationship + | SalesforceAsset + | SalesforceAccount + +union SalesforceLookedUpFromActivityWhatUnion = + | SalesforceSolution + | SalesforceProduct2 + | SalesforceOrder + | SalesforceOpportunity + | SalesforceContract + | SalesforceCase + | SalesforceCampaign + | SalesforceAssetRelationship + | SalesforceAsset + | SalesforceAccount + +union SalesforceActivityHistoryWhatUnion = + | SalesforceSolution + | SalesforceProduct2 + | SalesforceOrder + | SalesforceOpportunity + | SalesforceContract + | SalesforceCase + | SalesforceCampaign + | SalesforceAssetRelationship + | SalesforceAsset + | SalesforceAccount """ A filter to be used against Topic object types. All fields are combined with a logical ‘and.’ @@ -192626,7 +208052,21 @@ type SalesforceTopicAssignmentEdge { cursor: String! } -union SalesforceTopicAssignmentEntityUnion = SalesforceTask | SalesforceSolution | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceFeedItem | SalesforceEvent | SalesforceContract | SalesforceContentDocument | SalesforceContact | SalesforceCase | SalesforceCampaign | SalesforceAsset | SalesforceAccount +union SalesforceTopicAssignmentEntityUnion = + | SalesforceTask + | SalesforceSolution + | SalesforceOrder + | SalesforceOpportunity + | SalesforceLead + | SalesforceFeedItem + | SalesforceEvent + | SalesforceContract + | SalesforceContentDocument + | SalesforceContact + | SalesforceCase + | SalesforceCampaign + | SalesforceAsset + | SalesforceAccount """ Record @@ -192683,25 +208123,44 @@ 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( + """ + 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 """ @@ -192914,7 +208373,15 @@ type SalesforceNoteEdge { cursor: String! } -union SalesforceNoteParentUnion = SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceContract | SalesforceContact | SalesforceAsset | SalesforceAccount +union SalesforceNoteParentUnion = + | SalesforceProduct2 + | SalesforceOrder + | SalesforceOpportunity + | SalesforceLead + | SalesforceContract + | SalesforceContact + | SalesforceAsset + | SalesforceAccount """ Note @@ -192987,25 +208454,44 @@ 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( + """ + 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 """ @@ -193415,7 +208901,10 @@ type SalesforceEmailMessageRelationEdge { cursor: String! } -union SalesforceEmailMessageRelationRelationUnion = SalesforceUser | SalesforceLead | SalesforceContact +union SalesforceEmailMessageRelationRelationUnion = + | SalesforceUser + | SalesforceLead + | SalesforceContact """ Email Message Relation @@ -193476,25 +208965,44 @@ 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( + """ + 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 """ @@ -194043,25 +209551,44 @@ 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( + """ + 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 """ @@ -194092,7 +209619,16 @@ type SalesforceContentDistributionViewsConnection { union SalesforceOutgoingEmailWhoUnion = SalesforceLead | SalesforceContact -union SalesforceOutgoingEmailRelatedToUnion = SalesforceSolution | SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceContract | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount +union SalesforceOutgoingEmailRelatedToUnion = + | SalesforceSolution + | SalesforceProduct2 + | SalesforceOrder + | SalesforceOpportunity + | SalesforceContract + | SalesforceCampaign + | SalesforceAssetRelationship + | SalesforceAsset + | SalesforceAccount """ Outgoing Email @@ -194161,43 +209697,123 @@ 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( + """ + 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(""" - 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 - -union SalesforceFeedCommentParentUnion = SalesforceUser | SalesforceTopic | SalesforceTask | SalesforceSolution | SalesforceSite | SalesforceReport | SalesforceProduct2 | SalesforceOrderItem | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceEvent | SalesforceDashboardComponent | SalesforceDashboard | SalesforceContract | SalesforceContentDocument | SalesforceContact | SalesforceCollaborationGroup | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount + 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 + +union SalesforceFeedCommentParentUnion = + | SalesforceUser + | SalesforceTopic + | SalesforceTask + | SalesforceSolution + | SalesforceSite + | SalesforceReport + | SalesforceProduct2 + | SalesforceOrderItem + | SalesforceOrder + | SalesforceOpportunity + | SalesforceLead + | SalesforceEvent + | SalesforceDashboardComponent + | SalesforceDashboard + | SalesforceContract + | SalesforceContentDocument + | SalesforceContact + | SalesforceCollaborationGroup + | SalesforceCase + | SalesforceCampaign + | SalesforceAssetRelationship + | SalesforceAsset + | SalesforceAccount """ An edge in a connection. @@ -194318,7 +209934,9 @@ enum SalesforceCollaborationInvitationSortByFieldEnum { SYSTEM_MODSTAMP } -union SalesforceCollaborationInvitationSharedEntityUnion = SalesforceUser | SalesforceCollaborationGroup +union SalesforceCollaborationInvitationSharedEntityUnion = + | SalesforceUser + | SalesforceCollaborationGroup """ Chatter Invitation @@ -194399,41 +210017,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -194557,7 +210207,14 @@ type SalesforceCollaborationGroupRecordEdge { cursor: String! } -union SalesforceCollaborationGroupRecordRecordUnion = SalesforceOpportunity | SalesforceLead | SalesforceContract | SalesforceContact | SalesforceCase | SalesforceCampaign | SalesforceAccount +union SalesforceCollaborationGroupRecordRecordUnion = + | SalesforceOpportunity + | SalesforceLead + | SalesforceContract + | SalesforceContact + | SalesforceCase + | SalesforceCampaign + | SalesforceAccount """ Group Record @@ -194618,25 +210275,44 @@ 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( + """ + 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 """ @@ -194832,25 +210508,44 @@ 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( + """ + 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 """ @@ -195055,25 +210750,44 @@ 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( + """ + 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 """ @@ -195303,73 +211017,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -195807,41 +211579,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -195979,208 +211783,396 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceCombinedAttachmentParentUnion = SalesforceUser | SalesforceTask | SalesforceSolution | SalesforceSite | SalesforceReport | SalesforceProduct2 | SalesforceOrganization | SalesforceOrderItem | SalesforceOrder | SalesforceOpportunity | SalesforceListEmail | SalesforceLead | SalesforceEvent | SalesforceEmailTemplate | SalesforceEmailMessage | SalesforceDashboardComponent | SalesforceDashboard | SalesforceContract | SalesforceContentWorkspace | SalesforceContact | SalesforceCollaborationGroup | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount +union SalesforceCombinedAttachmentParentUnion = + | SalesforceUser + | SalesforceTask + | SalesforceSolution + | SalesforceSite + | SalesforceReport + | SalesforceProduct2 + | SalesforceOrganization + | SalesforceOrderItem + | SalesforceOrder + | SalesforceOpportunity + | SalesforceListEmail + | SalesforceLead + | SalesforceEvent + | SalesforceEmailTemplate + | SalesforceEmailMessage + | SalesforceDashboardComponent + | SalesforceDashboard + | SalesforceContract + | SalesforceContentWorkspace + | SalesforceContact + | SalesforceCollaborationGroup + | SalesforceCase + | SalesforceCampaign + | SalesforceAssetRelationship + | SalesforceAsset + | SalesforceAccount """ A filter to be used against Document object types. All fields are combined with a logical ‘and.’ @@ -196424,12 +212416,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -196778,32 +212776,54 @@ 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceEmailTemplateFolderUnion = SalesforceUser | SalesforceOrganization | SalesforceFolder +union SalesforceEmailTemplateFolderUnion = + | SalesforceUser + | SalesforceOrganization + | SalesforceFolder """ Email Template @@ -196936,80 +212956,164 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceAttachedContentDocumentLinkedEntityUnion = SalesforceUser | SalesforceTask | SalesforceSolution | SalesforceSite | SalesforceReport | SalesforceProduct2 | SalesforceOrganization | SalesforceOrderItem | SalesforceOrder | SalesforceOpportunity | SalesforceListEmail | SalesforceLead | SalesforceEvent | SalesforceEmailTemplate | SalesforceEmailMessage | SalesforceDashboardComponent | SalesforceDashboard | SalesforceContract | SalesforceContentWorkspace | SalesforceContact | SalesforceCollaborationGroup | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount +union SalesforceAttachedContentDocumentLinkedEntityUnion = + | SalesforceUser + | SalesforceTask + | SalesforceSolution + | SalesforceSite + | SalesforceReport + | SalesforceProduct2 + | SalesforceOrganization + | SalesforceOrderItem + | SalesforceOrder + | SalesforceOpportunity + | SalesforceListEmail + | SalesforceLead + | SalesforceEvent + | SalesforceEmailTemplate + | SalesforceEmailMessage + | SalesforceDashboardComponent + | SalesforceDashboard + | SalesforceContract + | SalesforceContentWorkspace + | SalesforceContact + | SalesforceCollaborationGroup + | SalesforceCase + | SalesforceCampaign + | SalesforceAssetRelationship + | SalesforceAsset + | SalesforceAccount """ An edge in a connection. @@ -197308,12 +213412,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -197409,25 +213519,44 @@ 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( + """ + 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 """ @@ -197794,41 +213923,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -197902,25 +214063,44 @@ 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( + """ + 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 """ @@ -198210,96 +214390,175 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceContentDistributionRelatedRecordUnion = SalesforceOpportunity | SalesforceListEmail | SalesforceLead | SalesforceEmailMessage | SalesforceContact | SalesforceCase | SalesforceCampaign | SalesforceAccount +union SalesforceContentDistributionRelatedRecordUnion = + | SalesforceOpportunity + | SalesforceListEmail + | SalesforceLead + | SalesforceEmailMessage + | SalesforceContact + | SalesforceCase + | SalesforceCampaign + | SalesforceAccount """ Content Delivery @@ -198444,41 +214703,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -198507,7 +214798,17 @@ type SalesforceContentDistributionsConnection { edges: [SalesforceContentDistributionEdge!]! } -union SalesforceEmailMessageRelatedToUnion = SalesforceSolution | SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceContract | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount +union SalesforceEmailMessageRelatedToUnion = + | SalesforceSolution + | SalesforceProduct2 + | SalesforceOrder + | SalesforceOpportunity + | SalesforceContract + | SalesforceCase + | SalesforceCampaign + | SalesforceAssetRelationship + | SalesforceAsset + | SalesforceAccount """ Email Message @@ -198656,137 +214957,247 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -199195,12 +215606,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + 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,12 +215919,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -199737,73 +216160,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -200253,345 +216734,624 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -200681,208 +217441,380 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceEventWhatUnion = SalesforceSolution | SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceContract | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount +union SalesforceEventWhatUnion = + | SalesforceSolution + | SalesforceProduct2 + | SalesforceOrder + | SalesforceOpportunity + | SalesforceContract + | SalesforceCase + | SalesforceCampaign + | SalesforceAssetRelationship + | SalesforceAsset + | SalesforceAccount union SalesforceEventWhoUnion = SalesforceLead | SalesforceContact @@ -201081,233 +218013,421 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -201401,73 +218521,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -201561,73 +218739,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -201721,80 +218957,162 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceFeedTrackedChangeFeedItemUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed +union SalesforceFeedTrackedChangeFeedItemUnion = + | SalesforceUserFeed + | SalesforceTopicFeed + | SalesforceTaskFeed + | SalesforceSolutionFeed + | SalesforceSiteFeed + | SalesforceReportFeed + | SalesforceProduct2Feed + | SalesforceOrderItemFeed + | SalesforceOrderFeed + | SalesforceOpportunityFeed + | SalesforceLeadFeed + | SalesforceFeedItem + | SalesforceEventFeed + | SalesforceDashboardFeed + | SalesforceDashboardComponentFeed + | SalesforceContractFeed + | SalesforceContentDocumentFeed + | SalesforceContactFeed + | SalesforceCollaborationGroupFeed + | SalesforceCaseFeed + | SalesforceCampaignFeed + | SalesforceAssetRelationshipFeed + | SalesforceAssetFeed + | SalesforceAccountFeed """ Order Feed @@ -201883,80 +219201,162 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceFeedSignalFeedItemUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed +union SalesforceFeedSignalFeedItemUnion = + | SalesforceUserFeed + | SalesforceTopicFeed + | SalesforceTaskFeed + | SalesforceSolutionFeed + | SalesforceSiteFeed + | SalesforceReportFeed + | SalesforceProduct2Feed + | SalesforceOrderItemFeed + | SalesforceOrderFeed + | SalesforceOpportunityFeed + | SalesforceLeadFeed + | SalesforceFeedItem + | SalesforceEventFeed + | SalesforceDashboardFeed + | SalesforceDashboardComponentFeed + | SalesforceContractFeed + | SalesforceContentDocumentFeed + | SalesforceContactFeed + | SalesforceCollaborationGroupFeed + | SalesforceCaseFeed + | SalesforceCampaignFeed + | SalesforceAssetRelationshipFeed + | SalesforceAssetFeed + | SalesforceAccountFeed """ Product Feed @@ -202045,80 +219445,163 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceFeedSignalFeedEntityUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceFeedComment | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed +union SalesforceFeedSignalFeedEntityUnion = + | SalesforceUserFeed + | SalesforceTopicFeed + | SalesforceTaskFeed + | SalesforceSolutionFeed + | SalesforceSiteFeed + | SalesforceReportFeed + | SalesforceProduct2Feed + | SalesforceOrderItemFeed + | SalesforceOrderFeed + | SalesforceOpportunityFeed + | SalesforceLeadFeed + | SalesforceFeedItem + | SalesforceFeedComment + | SalesforceEventFeed + | SalesforceDashboardFeed + | SalesforceDashboardComponentFeed + | SalesforceContractFeed + | SalesforceContentDocumentFeed + | SalesforceContactFeed + | SalesforceCollaborationGroupFeed + | SalesforceCaseFeed + | SalesforceCampaignFeed + | SalesforceAssetRelationshipFeed + | SalesforceAssetFeed + | SalesforceAccountFeed """ Report Feed @@ -202207,80 +219690,162 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceFeedLikeFeedItemUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed +union SalesforceFeedLikeFeedItemUnion = + | SalesforceUserFeed + | SalesforceTopicFeed + | SalesforceTaskFeed + | SalesforceSolutionFeed + | SalesforceSiteFeed + | SalesforceReportFeed + | SalesforceProduct2Feed + | SalesforceOrderItemFeed + | SalesforceOrderFeed + | SalesforceOpportunityFeed + | SalesforceLeadFeed + | SalesforceFeedItem + | SalesforceEventFeed + | SalesforceDashboardFeed + | SalesforceDashboardComponentFeed + | SalesforceContractFeed + | SalesforceContentDocumentFeed + | SalesforceContactFeed + | SalesforceCollaborationGroupFeed + | SalesforceCaseFeed + | SalesforceCampaignFeed + | SalesforceAssetRelationshipFeed + | SalesforceAssetFeed + | SalesforceAccountFeed """ Order Product Feed @@ -202369,73 +219934,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -203689,25 +221312,44 @@ 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( + """ + 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 """ @@ -203815,57 +221457,102 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -203983,160 +221670,306 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceFeedItemParentUnion = SalesforceUser | SalesforceTopic | SalesforceTask | SalesforceSolution | SalesforceSite | SalesforceReport | SalesforceProduct2 | SalesforceOrderItem | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceEvent | SalesforceDashboardComponent | SalesforceDashboard | SalesforceContract | SalesforceContentDocument | SalesforceContact | SalesforceCollaborationGroup | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount +union SalesforceFeedItemParentUnion = + | SalesforceUser + | SalesforceTopic + | SalesforceTask + | SalesforceSolution + | SalesforceSite + | SalesforceReport + | SalesforceProduct2 + | SalesforceOrderItem + | SalesforceOrder + | SalesforceOpportunity + | SalesforceLead + | SalesforceEvent + | SalesforceDashboardComponent + | SalesforceDashboard + | SalesforceContract + | SalesforceContentDocument + | SalesforceContact + | SalesforceCollaborationGroup + | SalesforceCase + | SalesforceCampaign + | SalesforceAssetRelationship + | SalesforceAsset + | SalesforceAccount """ Feed Item @@ -204273,137 +222106,247 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -204880,25 +222823,44 @@ 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( + """ + 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 """ @@ -204961,12 +222923,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -205158,137 +223126,247 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -205382,80 +223460,163 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceFeedLikeFeedEntityUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceFeedComment | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed +union SalesforceFeedLikeFeedEntityUnion = + | SalesforceUserFeed + | SalesforceTopicFeed + | SalesforceTaskFeed + | SalesforceSolutionFeed + | SalesforceSiteFeed + | SalesforceReportFeed + | SalesforceProduct2Feed + | SalesforceOrderItemFeed + | SalesforceOrderFeed + | SalesforceOpportunityFeed + | SalesforceLeadFeed + | SalesforceFeedItem + | SalesforceFeedComment + | SalesforceEventFeed + | SalesforceDashboardFeed + | SalesforceDashboardComponentFeed + | SalesforceContractFeed + | SalesforceContentDocumentFeed + | SalesforceContactFeed + | SalesforceCollaborationGroupFeed + | SalesforceCaseFeed + | SalesforceCampaignFeed + | SalesforceAssetRelationshipFeed + | SalesforceAssetFeed + | SalesforceAccountFeed """ A filter to be used against FeedPollVote object types. All fields are combined with a logical ‘and.’ @@ -205610,80 +223771,162 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceFeedPollVoteFeedItemUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed +union SalesforceFeedPollVoteFeedItemUnion = + | SalesforceUserFeed + | SalesforceTopicFeed + | SalesforceTaskFeed + | SalesforceSolutionFeed + | SalesforceSiteFeed + | SalesforceReportFeed + | SalesforceProduct2Feed + | SalesforceOrderItemFeed + | SalesforceOrderFeed + | SalesforceOpportunityFeed + | SalesforceLeadFeed + | SalesforceFeedItem + | SalesforceEventFeed + | SalesforceDashboardFeed + | SalesforceDashboardComponentFeed + | SalesforceContractFeed + | SalesforceContentDocumentFeed + | SalesforceContactFeed + | SalesforceCollaborationGroupFeed + | SalesforceCaseFeed + | SalesforceCampaignFeed + | SalesforceAssetRelationshipFeed + | SalesforceAssetFeed + | SalesforceAccountFeed """ Feed Poll Vote @@ -205732,25 +223975,44 @@ 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( + """ + 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 """ @@ -205920,80 +224182,162 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceFeedPollChoiceFeedItemUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed +union SalesforceFeedPollChoiceFeedItemUnion = + | SalesforceUserFeed + | SalesforceTopicFeed + | SalesforceTaskFeed + | SalesforceSolutionFeed + | SalesforceSiteFeed + | SalesforceReportFeed + | SalesforceProduct2Feed + | SalesforceOrderItemFeed + | SalesforceOrderFeed + | SalesforceOpportunityFeed + | SalesforceLeadFeed + | SalesforceFeedItem + | SalesforceEventFeed + | SalesforceDashboardFeed + | SalesforceDashboardComponentFeed + | SalesforceContractFeed + | SalesforceContentDocumentFeed + | SalesforceContactFeed + | SalesforceCollaborationGroupFeed + | SalesforceCaseFeed + | SalesforceCampaignFeed + | SalesforceAssetRelationshipFeed + | SalesforceAssetFeed + | SalesforceAccountFeed """ Feed Poll Choice @@ -206038,41 +224382,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -206305,80 +224681,162 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceFeedCommentFeedItemUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed +union SalesforceFeedCommentFeedItemUnion = + | SalesforceUserFeed + | SalesforceTopicFeed + | SalesforceTaskFeed + | SalesforceSolutionFeed + | SalesforceSiteFeed + | SalesforceReportFeed + | SalesforceProduct2Feed + | SalesforceOrderItemFeed + | SalesforceOrderFeed + | SalesforceOpportunityFeed + | SalesforceLeadFeed + | SalesforceFeedItem + | SalesforceEventFeed + | SalesforceDashboardFeed + | SalesforceDashboardComponentFeed + | SalesforceContractFeed + | SalesforceContentDocumentFeed + | SalesforceContactFeed + | SalesforceCollaborationGroupFeed + | SalesforceCaseFeed + | SalesforceCampaignFeed + | SalesforceAssetRelationshipFeed + | SalesforceAssetFeed + | SalesforceAccountFeed """ Feed Comment @@ -206483,73 +224941,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -206724,80 +225240,163 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceFeedAttachmentFeedEntityUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceFeedComment | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed +union SalesforceFeedAttachmentFeedEntityUnion = + | SalesforceUserFeed + | SalesforceTopicFeed + | SalesforceTaskFeed + | SalesforceSolutionFeed + | SalesforceSiteFeed + | SalesforceReportFeed + | SalesforceProduct2Feed + | SalesforceOrderItemFeed + | SalesforceOrderFeed + | SalesforceOpportunityFeed + | SalesforceLeadFeed + | SalesforceFeedItem + | SalesforceFeedComment + | SalesforceEventFeed + | SalesforceDashboardFeed + | SalesforceDashboardComponentFeed + | SalesforceContractFeed + | SalesforceContentDocumentFeed + | SalesforceContactFeed + | SalesforceCollaborationGroupFeed + | SalesforceCaseFeed + | SalesforceCampaignFeed + | SalesforceAssetRelationshipFeed + | SalesforceAssetFeed + | SalesforceAccountFeed """ Feed Attachment @@ -206842,25 +225441,44 @@ 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( + """ + 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 """ @@ -206976,73 +225594,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -207576,345 +226252,624 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -208096,425 +227051,769 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -208973,105 +228272,189 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -209273,297 +228656,537 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -209839,297 +229462,537 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -210197,48 +230060,98 @@ 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceProcessInstanceHistoryTargetObjectUnion = SalesforceUserProvisioningRequest | SalesforceStreamingChannel | SalesforceSolution | SalesforceProduct2 | SalesforceOrgDeleteRequest | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceEmailMessage | SalesforceDuplicateRecordSet | SalesforceDuplicateRecordItem | SalesforceContract | SalesforceContact | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount +union SalesforceProcessInstanceHistoryTargetObjectUnion = + | SalesforceUserProvisioningRequest + | SalesforceStreamingChannel + | SalesforceSolution + | SalesforceProduct2 + | SalesforceOrgDeleteRequest + | SalesforceOrder + | SalesforceOpportunity + | SalesforceLead + | SalesforceEmailMessage + | SalesforceDuplicateRecordSet + | SalesforceDuplicateRecordItem + | SalesforceContract + | SalesforceContact + | SalesforceCase + | SalesforceCampaign + | SalesforceAssetRelationship + | SalesforceAsset + | SalesforceAccount union SalesforceStreamingChannelOwnerUnion = SalesforceUser | SalesforceGroup @@ -210313,48 +230226,98 @@ 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceProcessInstanceTargetObjectUnion = SalesforceUserProvisioningRequest | SalesforceStreamingChannel | SalesforceSolution | SalesforceProduct2 | SalesforceOrgDeleteRequest | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceEmailMessage | SalesforceDuplicateRecordSet | SalesforceDuplicateRecordItem | SalesforceContract | SalesforceContact | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount +union SalesforceProcessInstanceTargetObjectUnion = + | SalesforceUserProvisioningRequest + | SalesforceStreamingChannel + | SalesforceSolution + | SalesforceProduct2 + | SalesforceOrgDeleteRequest + | SalesforceOrder + | SalesforceOpportunity + | SalesforceLead + | SalesforceEmailMessage + | SalesforceDuplicateRecordSet + | SalesforceDuplicateRecordItem + | SalesforceContract + | SalesforceContact + | SalesforceCase + | SalesforceCampaign + | SalesforceAssetRelationship + | SalesforceAsset + | SalesforceAccount """ Field that Process Nodes can be sorted by @@ -210499,7 +230462,9 @@ type SalesforceProcessInstanceStepEdge { union SalesforceProcessInstanceStepActorUnion = SalesforceUser | SalesforceGroup -union SalesforceProcessInstanceStepOriginalActorUnion = SalesforceUser | SalesforceGroup +union SalesforceProcessInstanceStepOriginalActorUnion = + | SalesforceUser + | SalesforceGroup """ Process Instance Step @@ -210577,12 +230542,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -210886,25 +230857,44 @@ 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( + """ + 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 """ @@ -210968,41 +230958,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -211300,41 +231322,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -211436,73 +231490,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -211761,25 +231873,44 @@ 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( + """ + 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 """ @@ -211946,41 +232077,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -212109,7 +232272,9 @@ type SalesforceUserAppMenuCustomizationEdge { cursor: String! } -union SalesforceUserAppMenuCustomizationOwnerUnion = SalesforceUser | SalesforceGroup +union SalesforceUserAppMenuCustomizationOwnerUnion = + | SalesforceUser + | SalesforceGroup """ UserAppMenuCustomization @@ -212174,25 +232339,44 @@ 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( + """ + 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 """ @@ -212406,25 +232590,44 @@ 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( + """ + 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 """ @@ -212674,12 +232877,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -212894,12 +233103,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -213041,12 +233256,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -213230,12 +233451,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -213560,25 +233787,44 @@ 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( + """ + 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 """ @@ -213715,12 +233961,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -213930,12 +234182,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -214043,57 +234301,102 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -214747,25 +235050,44 @@ 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( + """ + 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 """ @@ -214961,7 +235283,9 @@ type SalesforceExternalDataUserAuthEdge { cursor: String! } -union SalesforceExternalDataUserAuthExternalDataSourceUnion = SalesforceNamedCredential | SalesforceExternalDataSource +union SalesforceExternalDataUserAuthExternalDataSourceUnion = + | SalesforceNamedCredential + | SalesforceExternalDataSource """ External Data User Authentication @@ -215039,12 +235363,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -215160,64 +235490,115 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceSetupEntityAccessSetupEntityUnion = SalesforceNamedCredential | SalesforceExternalDataSource | SalesforceCustomPermission | SalesforceConnectedApplication | SalesforceApexPage | SalesforceApexClass +union SalesforceSetupEntityAccessSetupEntityUnion = + | SalesforceNamedCredential + | SalesforceExternalDataSource + | SalesforceCustomPermission + | SalesforceConnectedApplication + | SalesforceApexPage + | SalesforceApexClass """ Setup Entity Access @@ -215251,12 +235632,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -216429,12 +236816,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -216530,73 +236923,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -216659,12 +237110,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -217508,57 +237965,102 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -218519,41 +239021,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -219591,12 +240125,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -219676,64 +240216,111 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforcePermissionSetLicenseUnion = SalesforceUserLicense | SalesforcePermissionSetLicense +union SalesforcePermissionSetLicenseUnion = + | SalesforceUserLicense + | SalesforcePermissionSetLicense """ Permission Set @@ -220558,89 +241145,160 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -220715,12 +241373,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -221190,12 +241854,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -221450,57 +242120,102 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -221737,7 +242452,9 @@ type SalesforceAuthConfigProvidersEdge { cursor: String! } -union SalesforceAuthConfigProvidersAuthProviderUnion = SalesforceSamlSsoConfig | SalesforceAuthProvider +union SalesforceAuthConfigProvidersAuthProviderUnion = + | SalesforceSamlSsoConfig + | SalesforceAuthProvider """ A filter to be used against AuthConfig object types. All fields are combined with a logical ‘and.’ @@ -221997,25 +242714,44 @@ 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( + """ + 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 """ @@ -222078,12 +242814,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -222251,48 +242993,82 @@ 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceLoginHistoryAuthenticationServiceUnion = SalesforceSamlSsoConfig | SalesforceAuthProvider +union SalesforceLoginHistoryAuthenticationServiceUnion = + | SalesforceSamlSsoConfig + | SalesforceAuthProvider """ Login History @@ -222385,41 +243161,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -222509,57 +243317,102 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -222626,12 +243479,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -222739,160 +243598,285 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceUserProvisioningRequestOwnerUnion = SalesforceUser | SalesforceGroup +union SalesforceUserProvisioningRequestOwnerUnion = + | SalesforceUser + | SalesforceGroup """ User Provisioning Request @@ -223025,73 +244009,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -223165,32 +244207,151 @@ 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceFlowRecordRelationRelatedRecordUnion = SalesforceWaveCompatibilityCheckItem | SalesforceUserProvisioningRequest | SalesforceUserProvisioningLog | SalesforceUserProvMockTarget | SalesforceUserProvAccountStaging | SalesforceUserProvAccount | SalesforceUserAppMenuCustomization | SalesforceUserAppInfo | SalesforceTopicAssignment | SalesforceTopic | SalesforceTodayGoal | SalesforceTask | SalesforceStreamingChannel | SalesforceSolution | SalesforceSearchPromotionRule | SalesforceSearchActivity | SalesforceReport | SalesforceQuickText | SalesforcePushTopic | SalesforceProduct2 | SalesforceProcessInstanceNode | SalesforceProcessInstance | SalesforcePricebookEntry | SalesforcePricebook2 | SalesforcePartner | SalesforceOrgDeleteRequest | SalesforceOrderItem | SalesforceOrder | SalesforceOpportunityLineItem | SalesforceOpportunityContactRole | SalesforceOpportunity | SalesforceNote | SalesforceMacroInstruction | SalesforceMacro | SalesforceListEmailRecipientSource | SalesforceListEmail | SalesforceLeadCleanInfo | SalesforceLead | SalesforceInstalledMobileApp | SalesforceIdea | SalesforceForecastShare | SalesforceFileSearchActivity | SalesforceFeedRevision | SalesforceFeedPollVote | SalesforceFeedPollChoice | SalesforceFeedItem | SalesforceFeedComment | SalesforceFeedAttachment | SalesforceEventRelation | SalesforceEvent | SalesforceEntitySubscription | SalesforceEmailMessageRelation | SalesforceEmailMessage | SalesforceDuplicateRecordSet | SalesforceDuplicateRecordItem | SalesforceDocument | SalesforceDatacloudPurchaseUsage | SalesforceDatacloudOwnedEntity | SalesforceDataAssessmentValueMetric | SalesforceDataAssessmentMetric | SalesforceDataAssessmentFieldMetric | SalesforceDashboardComponent | SalesforceDashboard | SalesforceDandBCompany | SalesforceContractContactRole | SalesforceContract | SalesforceContentWorkspaceDoc | SalesforceContentVersionRating | SalesforceContentVersionComment | SalesforceContentVersion | SalesforceContentNotification | SalesforceContentFolderMember | SalesforceContentFolderLink | SalesforceContentFolder | SalesforceContentDocumentSubscription | SalesforceContentDocumentLink | SalesforceContentDocument | SalesforceContentDistribution | SalesforceContactCleanInfo | SalesforceContact | SalesforceCollaborationInvitation | SalesforceCollaborationGroupRecord | SalesforceCollaborationGroupMemberRequest | SalesforceCollaborationGroupMember | SalesforceCollaborationGroup | SalesforceCaseSolution | SalesforceCaseContactRole | SalesforceCase | SalesforceCampaignMember | SalesforceCampaign | SalesforceBackgroundOperation | SalesforceAttachment | SalesforceAsyncApexJob | SalesforceAssetRelationship | SalesforceAsset | SalesforceApexTestQueueItem | SalesforceAnnouncement | SalesforceAccountContactRole | SalesforceAccountCleanInfo | SalesforceAccount +union SalesforceFlowRecordRelationRelatedRecordUnion = + | SalesforceWaveCompatibilityCheckItem + | SalesforceUserProvisioningRequest + | SalesforceUserProvisioningLog + | SalesforceUserProvMockTarget + | SalesforceUserProvAccountStaging + | SalesforceUserProvAccount + | SalesforceUserAppMenuCustomization + | SalesforceUserAppInfo + | SalesforceTopicAssignment + | SalesforceTopic + | SalesforceTodayGoal + | SalesforceTask + | SalesforceStreamingChannel + | SalesforceSolution + | SalesforceSearchPromotionRule + | SalesforceSearchActivity + | SalesforceReport + | SalesforceQuickText + | SalesforcePushTopic + | SalesforceProduct2 + | SalesforceProcessInstanceNode + | SalesforceProcessInstance + | SalesforcePricebookEntry + | SalesforcePricebook2 + | SalesforcePartner + | SalesforceOrgDeleteRequest + | SalesforceOrderItem + | SalesforceOrder + | SalesforceOpportunityLineItem + | SalesforceOpportunityContactRole + | SalesforceOpportunity + | SalesforceNote + | SalesforceMacroInstruction + | SalesforceMacro + | SalesforceListEmailRecipientSource + | SalesforceListEmail + | SalesforceLeadCleanInfo + | SalesforceLead + | SalesforceInstalledMobileApp + | SalesforceIdea + | SalesforceForecastShare + | SalesforceFileSearchActivity + | SalesforceFeedRevision + | SalesforceFeedPollVote + | SalesforceFeedPollChoice + | SalesforceFeedItem + | SalesforceFeedComment + | SalesforceFeedAttachment + | SalesforceEventRelation + | SalesforceEvent + | SalesforceEntitySubscription + | SalesforceEmailMessageRelation + | SalesforceEmailMessage + | SalesforceDuplicateRecordSet + | SalesforceDuplicateRecordItem + | SalesforceDocument + | SalesforceDatacloudPurchaseUsage + | SalesforceDatacloudOwnedEntity + | SalesforceDataAssessmentValueMetric + | SalesforceDataAssessmentMetric + | SalesforceDataAssessmentFieldMetric + | SalesforceDashboardComponent + | SalesforceDashboard + | SalesforceDandBCompany + | SalesforceContractContactRole + | SalesforceContract + | SalesforceContentWorkspaceDoc + | SalesforceContentVersionRating + | SalesforceContentVersionComment + | SalesforceContentVersion + | SalesforceContentNotification + | SalesforceContentFolderMember + | SalesforceContentFolderLink + | SalesforceContentFolder + | SalesforceContentDocumentSubscription + | SalesforceContentDocumentLink + | SalesforceContentDocument + | SalesforceContentDistribution + | SalesforceContactCleanInfo + | SalesforceContact + | SalesforceCollaborationInvitation + | SalesforceCollaborationGroupRecord + | SalesforceCollaborationGroupMemberRequest + | SalesforceCollaborationGroupMember + | SalesforceCollaborationGroup + | SalesforceCaseSolution + | SalesforceCaseContactRole + | SalesforceCase + | SalesforceCampaignMember + | SalesforceCampaign + | SalesforceBackgroundOperation + | SalesforceAttachment + | SalesforceAsyncApexJob + | SalesforceAssetRelationship + | SalesforceAsset + | SalesforceApexTestQueueItem + | SalesforceAnnouncement + | SalesforceAccountContactRole + | SalesforceAccountCleanInfo + | SalesforceAccount """ A filter to be used against FlowInterview object types. All fields are combined with a logical ‘and.’ @@ -223429,25 +244590,44 @@ 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( + """ + 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 """ @@ -223514,12 +244694,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -223928,12 +245114,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -224069,41 +245261,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -224348,25 +245572,44 @@ 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( + """ + 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 """ @@ -224452,25 +245695,44 @@ 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( + """ + 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 """ @@ -224871,89 +246133,160 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -225019,41 +246352,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -225153,169 +246518,305 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -225429,89 +246930,160 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -225629,73 +247201,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -225797,304 +247427,559 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceAttachmentParentUnion = SalesforceTask | SalesforceSolution | SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceEvent | SalesforceEmailTemplate | SalesforceEmailMessage | SalesforceContract | SalesforceContact | SalesforceCase | SalesforceCampaign | SalesforceAsset | SalesforceAccount +union SalesforceAttachmentParentUnion = + | SalesforceTask + | SalesforceSolution + | SalesforceProduct2 + | SalesforceOrder + | SalesforceOpportunity + | SalesforceLead + | SalesforceEvent + | SalesforceEmailTemplate + | SalesforceEmailMessage + | SalesforceContract + | SalesforceContact + | SalesforceCase + | SalesforceCampaign + | SalesforceAsset + | SalesforceAccount """ Attachment @@ -226179,25 +248064,44 @@ 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( + """ + 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 """ @@ -226321,288 +248225,525 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceTaskWhatUnion = SalesforceSolution | SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceContract | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount +union SalesforceTaskWhatUnion = + | SalesforceSolution + | SalesforceProduct2 + | SalesforceOrder + | SalesforceOpportunity + | SalesforceContract + | SalesforceCase + | SalesforceCampaign + | SalesforceAssetRelationship + | SalesforceAsset + | SalesforceAccount union SalesforceTaskWhoUnion = SalesforceLead | SalesforceContact @@ -226793,192 +248934,364 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceEntitySubscriptionParentUnion = SalesforceUser | SalesforceTopic | SalesforceTask | SalesforceSolution | SalesforceSite | SalesforceReport | SalesforceProduct2 | SalesforceOrderItem | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceEvent | SalesforceDashboardComponent | SalesforceDashboard | SalesforceContract | SalesforceContentDocument | SalesforceContact | SalesforceCollaborationGroup | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount +union SalesforceEntitySubscriptionParentUnion = + | SalesforceUser + | SalesforceTopic + | SalesforceTask + | SalesforceSolution + | SalesforceSite + | SalesforceReport + | SalesforceProduct2 + | SalesforceOrderItem + | SalesforceOrder + | SalesforceOpportunity + | SalesforceLead + | SalesforceEvent + | SalesforceDashboardComponent + | SalesforceDashboard + | SalesforceContract + | SalesforceContentDocument + | SalesforceContact + | SalesforceCollaborationGroup + | SalesforceCase + | SalesforceCampaign + | SalesforceAssetRelationship + | SalesforceAsset + | SalesforceAccount """ Entity Subscription @@ -227023,25 +249336,44 @@ 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( + """ + 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 """ @@ -227358,7 +249690,10 @@ enum SalesforceDashboardComponentSortByFieldEnum { CUSTOM_REPORT_ID } -union SalesforceReportOwnerUnion = SalesforceUser | SalesforceOrganization | SalesforceFolder +union SalesforceReportOwnerUnion = + | SalesforceUser + | SalesforceOrganization + | SalesforceFolder """ Report @@ -227447,137 +249782,247 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -227615,121 +250060,218 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -227949,137 +250491,247 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -228171,73 +250823,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -228365,64 +251075,111 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceCustomBrandAssetAssetSourceUnion = SalesforceDocument | SalesforceContentAsset +union SalesforceCustomBrandAssetAssetSourceUnion = + | SalesforceDocument + | SalesforceContentAsset """ A filter to be used against CustomBrandAsset object types. All fields are combined with a logical ‘and.’ @@ -228968,12 +251725,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -229159,48 +251922,83 @@ 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceCustomBrandParentUnion = SalesforceTopic | SalesforceStamp | SalesforceOrganization +union SalesforceCustomBrandParentUnion = + | SalesforceTopic + | SalesforceStamp + | SalesforceOrganization """ Custom Brand @@ -229245,25 +252043,44 @@ 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( + """ + 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 """ @@ -229326,12 +252143,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -229634,57 +252457,102 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -229790,25 +252658,44 @@ 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( + """ + 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 """ @@ -230075,12 +252962,18 @@ 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( + """ + List of custom fields to return. By default, returns all custom fields. + """ + fields: [String!] + ): JSON! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -230176,48 +253069,397 @@ 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceSobject = SalesforceAuraDefinitionBundle | SalesforceApexTestRunResult | SalesforceDataAssessmentMetric | SalesforceTopicAssignment | SalesforceLightningComponentBundle | SalesforceLeadFeed | SalesforceFeedRevision | SalesforceScontrol | SalesforceDuplicateRule | SalesforceSecureAgentPlugin | SalesforceApexLog | SalesforceCollaborationGroupRecord | SalesforceEmailMessage | SalesforceOrderItem | SalesforceUserListViewCriterion | SalesforceAsyncApexJob | SalesforceSearchActivity | SalesforceCampaignShare | SalesforcePermissionSetAssignment | SalesforceDuplicateRecordItem | SalesforceDeclinedEventRelation | SalesforceUserProvisioningConfig | SalesforceTask | SalesforceCampaignHistory | SalesforceTaskStatus | SalesforceUserFeed | SalesforceMatchingRuleItem | SalesforceContentVersionComment | SalesforceStreamingChannel | SalesforceStamp | SalesforceApexTestQueueItem | SalesforceFieldPermissions | SalesforceSecureAgentPluginProperty | SalesforceMacro | SalesforceEmailServicesAddress | SalesforceContractHistory | SalesforceHoliday | SalesforcePushTopic | SalesforceCaseStatus | SalesforceLoginGeo | SalesforceTransactionSecurityPolicy | SalesforceUserProvisioningLog | SalesforceDandBCompany | SalesforceContractStatus | SalesforceProcessInstanceNode | SalesforcePlatformCachePartitionType | SalesforceContentWorkspaceDoc | SalesforceGroup | SalesforceOpportunityFeed | SalesforceDocument | SalesforceSetupEntityAccess | SalesforceContactCleanInfo | SalesforceDuplicateRecordSet | SalesforceLeadShare | SalesforceSecureAgent | SalesforceContactFeed | SalesforceProduct2Feed | SalesforceQuickText | SalesforceSecureAgentsCluster | SalesforceFeedPollVote | SalesforceCorsWhitelistEntry | SalesforceOrderHistory | SalesforceChatterExtension | SalesforceContentDocumentLink | SalesforceOpportunityCompetitor | SalesforceIdeaComment | SalesforceBackgroundOperation | SalesforceCaseTeamTemplateRecord | SalesforceGroupMember | SalesforceWaveCompatibilityCheckItem | SalesforceCaseTeamTemplateMember | SalesforceApexTestResultLimits | SalesforceCaseTeamTemplate | SalesforceProcessInstanceStep | SalesforceObjectPermissions | SalesforceListViewChart | SalesforceOrderItemFeed | SalesforceProcessNode | SalesforceUserProvMockTarget | SalesforcePricebook2 | SalesforceLoginHistory | SalesforceCaseHistory | SalesforceChatterActivity | SalesforceEmailDomainKey | SalesforceInstalledMobileApp | SalesforceLoginIp | SalesforceSite | SalesforceExternalDataSource | SalesforceFeedComment | SalesforceLead | SalesforceOrderItemHistory | SalesforceFeedPollChoice | SalesforceWebLink | SalesforceCaseShare | SalesforcePricebook2History | SalesforceCronJobDetail | SalesforceEventRelation | SalesforceSolutionFeed | SalesforceStaticResource | SalesforceSolutionStatus | SalesforceFlowInterview | SalesforceIdpEventLog | SalesforceTodayGoalShare | SalesforceContentFolder | SalesforceAccountPartner | SalesforceContentDistribution | SalesforceCategoryData | SalesforceFiscalYearSettings | SalesforceListEmailShare | SalesforceCampaignFeed | SalesforceChatterExtensionConfig | SalesforcePricebookEntry | SalesforceDomainSite | SalesforceContentDocumentHistory | SalesforceTenantUsageEntitlement | SalesforceFeedAttachment | SalesforceCaseTeamRole | SalesforceContentWorkspaceSubscription | SalesforceTopicFeed | SalesforceRecordType | SalesforceListEmail | SalesforceAccountContactRole | SalesforceClientBrowser | SalesforceAssetFeed | SalesforcePartnerRole | SalesforceCaseFeed | SalesforceFileSearchActivity | SalesforceUserPackageLicense | SalesforceUserProvisioningRequest | SalesforcePermissionSetLicenseAssign | SalesforceUserShare | SalesforcePackageLicense | SalesforceAccountCleanInfo | SalesforceAssetShare | SalesforceContactShare | SalesforceProduct2History | SalesforceCampaignMember | SalesforceAssetRelationshipFeed | SalesforcePermissionSet | SalesforceActionLinkTemplate | SalesforceContentFolderItem | SalesforceOpportunityStage | SalesforceProfile | SalesforceAccount | SalesforceEmailCapture | SalesforceCaseSolution | SalesforceOpportunityContactRole | SalesforceUserRole | SalesforceEventFeed | SalesforceAssetRelationship | SalesforceEventLogFile | SalesforceOpportunityShare | SalesforceSamlSsoConfig | SalesforceAccountHistory | SalesforceOpportunityFieldHistory | SalesforceCollaborationGroupMember | SalesforceUserPreference | SalesforceCollaborationGroupFeed | SalesforceOrgDeleteRequest | SalesforceListView | SalesforceCustomObjectUserLicenseMetrics | SalesforceMailmergeTemplate | SalesforceCaseTeamMember | SalesforceCallCenter | SalesforceAssetRelationshipHistory | SalesforceContentFolderMember | SalesforceContentWorkspace | SalesforceContentDocumentFeed | SalesforceDashboardComponent | SalesforceConnectedApplication | SalesforceDomain | SalesforceVerificationHistory | SalesforceQueueSobject | SalesforceContentWorkspaceMember | SalesforceAuthSession | SalesforceVisualforceAccessMetrics | SalesforceReport | SalesforceApexTestSuite | SalesforceTaskPriority | SalesforceTopic | SalesforceAuthConfig | SalesforceQuickTextHistory | SalesforceContentVersionRating | SalesforceEmailTemplate | SalesforceLeadHistory | SalesforceContentDocument | SalesforceContact | SalesforceDatacloudPurchaseUsage | SalesforceAuraDefinition | SalesforceDataAssessmentFieldMetric | SalesforceSecurityCustomBaseline | SalesforceContentVersion | SalesforceCampaignMemberStatus | SalesforcePermissionSetLicense | SalesforceProcessDefinition | SalesforceEvent | SalesforceLeadCleanInfo | SalesforceSearchPromotionRule | SalesforceExternalDataUserAuth | SalesforceAnnouncement | SalesforceTopicUserEvent | SalesforceUserAppMenuCustomization | SalesforceOrderShare | SalesforceTestSuiteMembership | SalesforceCaseContactRole | SalesforceContentNotification | SalesforceDashboard | SalesforceUser | SalesforceMacroHistory | SalesforceBusinessHours | SalesforceContentWorkspacePermission | SalesforceContractFeed | SalesforceCustomPermission | SalesforceMacroInstruction | SalesforceDocumentAttachmentMap | SalesforceContract | SalesforceContentTagSubscription | SalesforceSolutionHistory | SalesforceCspTrustedSite | SalesforceGrantedByLicense | SalesforceCronTrigger | SalesforceSetupAuditTrail | SalesforceKnowledgeableUser | SalesforceEmailMessageRelation | SalesforceOrgWideEmailAddress | SalesforceMatchingRule | SalesforceEmailServicesFunction | SalesforceLeadStatus | SalesforceCommunity | SalesforceSessionPermSetActivation | SalesforceAcceptedEventRelation | SalesforceProduct2 | SalesforceAuthConfigProviders | SalesforceQuickTextShare | SalesforceFolder | SalesforceApexTestResult | SalesforceOrgDeleteRequestShare | SalesforceFlowInterviewShare | SalesforceUserProvAccountStaging | SalesforceBusinessProcess | SalesforceSolution | SalesforceSiteHistory | SalesforceVote | SalesforceContractContactRole | SalesforceAssignmentRule | SalesforceNote | SalesforceCustomBrand | SalesforceDataAssessmentValueMetric | SalesforceReportFeed | SalesforceContentVersionHistory | SalesforceIdea | SalesforceCollaborationGroup | SalesforceOpportunity | SalesforceContentDocumentSubscription | SalesforceContactHistory | SalesforceListEmailRecipientSource | SalesforceNamedCredential | SalesforceTodayGoal | SalesforceOrganization | SalesforceTaskFeed | SalesforceOpportunityLineItem | SalesforceFlowRecordRelation | SalesforceAdditionalNumber | SalesforceCollaborationInvitation | SalesforcePartner | SalesforceEntitySubscription | SalesforceCategoryNode | SalesforceApexEmailNotification | SalesforceUserListView | SalesforceUserProvAccount | SalesforceProcessInstanceWorkitem | SalesforceAsset | SalesforceDatacloudOwnedEntity | SalesforceUserProvisioningRequestShare | SalesforceActionLinkGroupTemplate | SalesforceUserAppInfo | SalesforceAppMenuItem | SalesforceUserAppMenuCustomizationShare | SalesforceAssetHistory | SalesforceOpportunityHistory | SalesforceDashboardComponentFeed | SalesforcePeriod | SalesforceContentFolderLink | SalesforceFeedItem | SalesforceAccountShare | SalesforceApexClass | SalesforceDashboardFeed | SalesforceSiteFeed | SalesforceApexTrigger | SalesforceStampAssignment | SalesforceUserLogin | SalesforceCustomBrandAsset | SalesforceAccountFeed | SalesforceCustomPermissionDependency | SalesforceContentAsset | SalesforceMacroShare | SalesforceCollaborationGroupMemberRequest | SalesforceCampaign | SalesforceOrder | SalesforceOrderFeed | SalesforceOpportunityPartner | SalesforceAttachment | SalesforceForecastShare | SalesforceApexComponent | SalesforceLightningComponentResource | SalesforceApexPage | SalesforceCase | SalesforceProcessInstance | SalesforceContentUserSubscription | SalesforceUserLicense | SalesforceContentDistributionView | SalesforceUndecidedEventRelation | SalesforceBrandTemplate | SalesforceCaseComment | SalesforceStreamingChannelShare | SalesforcePlatformCachePartition | SalesforceAuthProvider +union SalesforceSobject = + | SalesforceAuraDefinitionBundle + | SalesforceApexTestRunResult + | SalesforceDataAssessmentMetric + | SalesforceTopicAssignment + | SalesforceLightningComponentBundle + | SalesforceLeadFeed + | SalesforceFeedRevision + | SalesforceScontrol + | SalesforceDuplicateRule + | SalesforceSecureAgentPlugin + | SalesforceApexLog + | SalesforceCollaborationGroupRecord + | SalesforceEmailMessage + | SalesforceOrderItem + | SalesforceUserListViewCriterion + | SalesforceAsyncApexJob + | SalesforceSearchActivity + | SalesforceCampaignShare + | SalesforcePermissionSetAssignment + | SalesforceDuplicateRecordItem + | SalesforceDeclinedEventRelation + | SalesforceUserProvisioningConfig + | SalesforceTask + | SalesforceCampaignHistory + | SalesforceTaskStatus + | SalesforceUserFeed + | SalesforceMatchingRuleItem + | SalesforceContentVersionComment + | SalesforceStreamingChannel + | SalesforceStamp + | SalesforceApexTestQueueItem + | SalesforceFieldPermissions + | SalesforceSecureAgentPluginProperty + | SalesforceMacro + | SalesforceEmailServicesAddress + | SalesforceContractHistory + | SalesforceHoliday + | SalesforcePushTopic + | SalesforceCaseStatus + | SalesforceLoginGeo + | SalesforceTransactionSecurityPolicy + | SalesforceUserProvisioningLog + | SalesforceDandBCompany + | SalesforceContractStatus + | SalesforceProcessInstanceNode + | SalesforcePlatformCachePartitionType + | SalesforceContentWorkspaceDoc + | SalesforceGroup + | SalesforceOpportunityFeed + | SalesforceDocument + | SalesforceSetupEntityAccess + | SalesforceContactCleanInfo + | SalesforceDuplicateRecordSet + | SalesforceLeadShare + | SalesforceSecureAgent + | SalesforceContactFeed + | SalesforceProduct2Feed + | SalesforceQuickText + | SalesforceSecureAgentsCluster + | SalesforceFeedPollVote + | SalesforceCorsWhitelistEntry + | SalesforceOrderHistory + | SalesforceChatterExtension + | SalesforceContentDocumentLink + | SalesforceOpportunityCompetitor + | SalesforceIdeaComment + | SalesforceBackgroundOperation + | SalesforceCaseTeamTemplateRecord + | SalesforceGroupMember + | SalesforceWaveCompatibilityCheckItem + | SalesforceCaseTeamTemplateMember + | SalesforceApexTestResultLimits + | SalesforceCaseTeamTemplate + | SalesforceProcessInstanceStep + | SalesforceObjectPermissions + | SalesforceListViewChart + | SalesforceOrderItemFeed + | SalesforceProcessNode + | SalesforceUserProvMockTarget + | SalesforcePricebook2 + | SalesforceLoginHistory + | SalesforceCaseHistory + | SalesforceChatterActivity + | SalesforceEmailDomainKey + | SalesforceInstalledMobileApp + | SalesforceLoginIp + | SalesforceSite + | SalesforceExternalDataSource + | SalesforceFeedComment + | SalesforceLead + | SalesforceOrderItemHistory + | SalesforceFeedPollChoice + | SalesforceWebLink + | SalesforceCaseShare + | SalesforcePricebook2History + | SalesforceCronJobDetail + | SalesforceEventRelation + | SalesforceSolutionFeed + | SalesforceStaticResource + | SalesforceSolutionStatus + | SalesforceFlowInterview + | SalesforceIdpEventLog + | SalesforceTodayGoalShare + | SalesforceContentFolder + | SalesforceAccountPartner + | SalesforceContentDistribution + | SalesforceCategoryData + | SalesforceFiscalYearSettings + | SalesforceListEmailShare + | SalesforceCampaignFeed + | SalesforceChatterExtensionConfig + | SalesforcePricebookEntry + | SalesforceDomainSite + | SalesforceContentDocumentHistory + | SalesforceTenantUsageEntitlement + | SalesforceFeedAttachment + | SalesforceCaseTeamRole + | SalesforceContentWorkspaceSubscription + | SalesforceTopicFeed + | SalesforceRecordType + | SalesforceListEmail + | SalesforceAccountContactRole + | SalesforceClientBrowser + | SalesforceAssetFeed + | SalesforcePartnerRole + | SalesforceCaseFeed + | SalesforceFileSearchActivity + | SalesforceUserPackageLicense + | SalesforceUserProvisioningRequest + | SalesforcePermissionSetLicenseAssign + | SalesforceUserShare + | SalesforcePackageLicense + | SalesforceAccountCleanInfo + | SalesforceAssetShare + | SalesforceContactShare + | SalesforceProduct2History + | SalesforceCampaignMember + | SalesforceAssetRelationshipFeed + | SalesforcePermissionSet + | SalesforceActionLinkTemplate + | SalesforceContentFolderItem + | SalesforceOpportunityStage + | SalesforceProfile + | SalesforceAccount + | SalesforceEmailCapture + | SalesforceCaseSolution + | SalesforceOpportunityContactRole + | SalesforceUserRole + | SalesforceEventFeed + | SalesforceAssetRelationship + | SalesforceEventLogFile + | SalesforceOpportunityShare + | SalesforceSamlSsoConfig + | SalesforceAccountHistory + | SalesforceOpportunityFieldHistory + | SalesforceCollaborationGroupMember + | SalesforceUserPreference + | SalesforceCollaborationGroupFeed + | SalesforceOrgDeleteRequest + | SalesforceListView + | SalesforceCustomObjectUserLicenseMetrics + | SalesforceMailmergeTemplate + | SalesforceCaseTeamMember + | SalesforceCallCenter + | SalesforceAssetRelationshipHistory + | SalesforceContentFolderMember + | SalesforceContentWorkspace + | SalesforceContentDocumentFeed + | SalesforceDashboardComponent + | SalesforceConnectedApplication + | SalesforceDomain + | SalesforceVerificationHistory + | SalesforceQueueSobject + | SalesforceContentWorkspaceMember + | SalesforceAuthSession + | SalesforceVisualforceAccessMetrics + | SalesforceReport + | SalesforceApexTestSuite + | SalesforceTaskPriority + | SalesforceTopic + | SalesforceAuthConfig + | SalesforceQuickTextHistory + | SalesforceContentVersionRating + | SalesforceEmailTemplate + | SalesforceLeadHistory + | SalesforceContentDocument + | SalesforceContact + | SalesforceDatacloudPurchaseUsage + | SalesforceAuraDefinition + | SalesforceDataAssessmentFieldMetric + | SalesforceSecurityCustomBaseline + | SalesforceContentVersion + | SalesforceCampaignMemberStatus + | SalesforcePermissionSetLicense + | SalesforceProcessDefinition + | SalesforceEvent + | SalesforceLeadCleanInfo + | SalesforceSearchPromotionRule + | SalesforceExternalDataUserAuth + | SalesforceAnnouncement + | SalesforceTopicUserEvent + | SalesforceUserAppMenuCustomization + | SalesforceOrderShare + | SalesforceTestSuiteMembership + | SalesforceCaseContactRole + | SalesforceContentNotification + | SalesforceDashboard + | SalesforceUser + | SalesforceMacroHistory + | SalesforceBusinessHours + | SalesforceContentWorkspacePermission + | SalesforceContractFeed + | SalesforceCustomPermission + | SalesforceMacroInstruction + | SalesforceDocumentAttachmentMap + | SalesforceContract + | SalesforceContentTagSubscription + | SalesforceSolutionHistory + | SalesforceCspTrustedSite + | SalesforceGrantedByLicense + | SalesforceCronTrigger + | SalesforceSetupAuditTrail + | SalesforceKnowledgeableUser + | SalesforceEmailMessageRelation + | SalesforceOrgWideEmailAddress + | SalesforceMatchingRule + | SalesforceEmailServicesFunction + | SalesforceLeadStatus + | SalesforceCommunity + | SalesforceSessionPermSetActivation + | SalesforceAcceptedEventRelation + | SalesforceProduct2 + | SalesforceAuthConfigProviders + | SalesforceQuickTextShare + | SalesforceFolder + | SalesforceApexTestResult + | SalesforceOrgDeleteRequestShare + | SalesforceFlowInterviewShare + | SalesforceUserProvAccountStaging + | SalesforceBusinessProcess + | SalesforceSolution + | SalesforceSiteHistory + | SalesforceVote + | SalesforceContractContactRole + | SalesforceAssignmentRule + | SalesforceNote + | SalesforceCustomBrand + | SalesforceDataAssessmentValueMetric + | SalesforceReportFeed + | SalesforceContentVersionHistory + | SalesforceIdea + | SalesforceCollaborationGroup + | SalesforceOpportunity + | SalesforceContentDocumentSubscription + | SalesforceContactHistory + | SalesforceListEmailRecipientSource + | SalesforceNamedCredential + | SalesforceTodayGoal + | SalesforceOrganization + | SalesforceTaskFeed + | SalesforceOpportunityLineItem + | SalesforceFlowRecordRelation + | SalesforceAdditionalNumber + | SalesforceCollaborationInvitation + | SalesforcePartner + | SalesforceEntitySubscription + | SalesforceCategoryNode + | SalesforceApexEmailNotification + | SalesforceUserListView + | SalesforceUserProvAccount + | SalesforceProcessInstanceWorkitem + | SalesforceAsset + | SalesforceDatacloudOwnedEntity + | SalesforceUserProvisioningRequestShare + | SalesforceActionLinkGroupTemplate + | SalesforceUserAppInfo + | SalesforceAppMenuItem + | SalesforceUserAppMenuCustomizationShare + | SalesforceAssetHistory + | SalesforceOpportunityHistory + | SalesforceDashboardComponentFeed + | SalesforcePeriod + | SalesforceContentFolderLink + | SalesforceFeedItem + | SalesforceAccountShare + | SalesforceApexClass + | SalesforceDashboardFeed + | SalesforceSiteFeed + | SalesforceApexTrigger + | SalesforceStampAssignment + | SalesforceUserLogin + | SalesforceCustomBrandAsset + | SalesforceAccountFeed + | SalesforceCustomPermissionDependency + | SalesforceContentAsset + | SalesforceMacroShare + | SalesforceCollaborationGroupMemberRequest + | SalesforceCampaign + | SalesforceOrder + | SalesforceOrderFeed + | SalesforceOpportunityPartner + | SalesforceAttachment + | SalesforceForecastShare + | SalesforceApexComponent + | SalesforceLightningComponentResource + | SalesforceApexPage + | SalesforceCase + | SalesforceProcessInstance + | SalesforceContentUserSubscription + | SalesforceUserLicense + | SalesforceContentDistributionView + | SalesforceUndecidedEventRelation + | SalesforceBrandTemplate + | SalesforceCaseComment + | SalesforceStreamingChannelShare + | SalesforcePlatformCachePartition + | SalesforceAuthProvider """ Field that Record Types can be sorted by @@ -230333,25 +253575,44 @@ 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( + """ + 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 """ @@ -230429,41 +253690,73 @@ 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( + """ + 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(""" - 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( + """ + 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 """ @@ -230565,137 +253858,247 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -230837,281 +254240,508 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -231325,537 +254955,972 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -236254,192 +260319,369 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ oneGraphId: ID! } -union SalesforceContentDocumentLinkLinkedEntityUnion = 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 +union SalesforceContentDocumentLinkLinkedEntityUnion = + | 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 """ Content Document Link @@ -236484,25 +260726,44 @@ 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( + """ + 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 """ @@ -236762,121 +261023,218 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -236966,377 +261324,682 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -237396,25 +262059,44 @@ 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( + """ + 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 """ @@ -237534,73 +262216,131 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -238310,5049 +263050,9150 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -243680,617 +272521,1117 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -244663,409 +274004,740 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -245245,17 +274917,28 @@ 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( + """ + 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 } """ @@ -245554,25 +275237,39 @@ 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( + """ + 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(""" - 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( + """ + 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 } """ @@ -245850,617 +275547,1117 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -248360,7 +278557,22 @@ type StripeTransferReversal { amount: Int! } -union StripeBalanceTransactionSourceUnion = StripeTransferReversal | StripeTransfer | StripeTopup | StripeTaxDeductedAtSource | StripeReserveTransaction | StripeRefund | StripePlatformTaxFee | StripePayout | StripeIssuingTransaction | StripeIssuingAuthorization | StripeFeeRefund | StripeDispute | StripeConnectCollectionTransfer | StripeCharge | StripeApplicationFee +union StripeBalanceTransactionSourceUnion = + | StripeTransferReversal + | StripeTransfer + | StripeTopup + | StripeTaxDeductedAtSource + | StripeReserveTransaction + | StripeRefund + | StripePlatformTaxFee + | StripePayout + | StripeIssuingTransaction + | StripeIssuingAuthorization + | StripeFeeRefund + | StripeDispute + | StripeConnectCollectionTransfer + | StripeCharge + | StripeApplicationFee enum StripeBalanceTransactionObjectEnum { balance_transaction @@ -248681,393 +278893,711 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -249277,9 +279807,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -249289,19 +279822,30 @@ type GitHubBaseRefForcePushedEvent implements OneGraphNode & GitHubNode { """ Represents a commit comment thread part of a pull request. """ -type GitHubPullRequestCommitCommentThread implements OneGraphNode & GitHubRepositoryNode & GitHubNode { +type GitHubPullRequestCommitCommentThread implements OneGraphNode & + GitHubRepositoryNode & + GitHubNode { """ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -249326,9 +279870,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -249577,30 +280124,50 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -249610,12 +280177,16 @@ type GitHubSecurityAdvisory implements OneGraphNode & GitHubNode { """ A alert for a repository with an affected vulnerability. """ -type GitHubRepositoryVulnerabilityAlert implements OneGraphNode & GitHubRepositoryNode & GitHubNode { +type GitHubRepositoryVulnerabilityAlert implements OneGraphNode & + GitHubRepositoryNode & + GitHubNode { """ 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.") + @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? """ @@ -249636,17 +280207,23 @@ 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.") + @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.") + @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.") + @deprecated( + reason: "advisory specific fields are being removed from repositoryVulnerabilityAlert objects Use `securityVulnerability.firstPatchedVersion` instead. Removal on 2019-10-01 UTC." + ) """ """ @@ -249655,7 +280232,9 @@ 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.") + @deprecated( + reason: "advisory specific fields are being removed from repositoryVulnerabilityAlert objects Use `securityVulnerability.package` instead. Removal on 2019-10-01 UTC." + ) """ The associated repository """ @@ -249680,9 +280259,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -249702,19 +280284,30 @@ interface GitHubRepositoryNode { """ A thread of comments on a commit. """ -type GitHubCommitCommentThread implements OneGraphNode & GitHubRepositoryNode & GitHubNode { +type GitHubCommitCommentThread implements OneGraphNode & + GitHubRepositoryNode & + GitHubNode { """ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -249735,9 +280328,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -249776,9 +280372,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -249958,15 +280557,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -249975,9 +280583,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250024,9 +280635,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250036,7 +280650,8 @@ type GitHubDeploymentStatus implements OneGraphNode & GitHubNode { """ Represents a 'deployment_environment_changed' event on a given pull request. """ -type GitHubDeploymentEnvironmentChangedEvent implements OneGraphNode & GitHubNode { +type GitHubDeploymentEnvironmentChangedEvent implements OneGraphNode & + GitHubNode { """ Identifies the actor who performed the event. """ @@ -250057,9 +280672,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250094,9 +280712,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250135,9 +280756,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250164,9 +280788,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250176,7 +280803,9 @@ type GitHubHeadRefRestoredEvent implements OneGraphNode & GitHubNode { """ Represents a 'merged' event on a given pull request. """ -type GitHubMergedEvent implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode { +type GitHubMergedEvent implements OneGraphNode & + GitHubUniformResourceLocatable & + GitHubNode { """ Identifies the actor who performed the event. """ @@ -250213,9 +280842,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250240,17 +280872,28 @@ 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( + """ + 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. """ @@ -250303,9 +280946,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250336,9 +280982,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250369,9 +281018,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250398,9 +281050,12 @@ type GitHubAddedToProjectEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250435,10 +281090,15 @@ 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! + @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! """ Unique id across all of OneGraph """ @@ -250453,7 +281113,9 @@ union GitHubCloser = GitHubPullRequest | GitHubCommit """ Represents a 'closed' event on any `Closable`. """ -type GitHubClosedEvent implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode { +type GitHubClosedEvent implements OneGraphNode & + GitHubUniformResourceLocatable & + GitHubNode { """ Identifies the actor who performed the event. """ @@ -250482,9 +281144,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250511,9 +281176,12 @@ type GitHubCommentDeletedEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250548,9 +281216,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250577,9 +281248,12 @@ type GitHubConvertedNoteToIssueEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250589,7 +281263,9 @@ type GitHubConvertedNoteToIssueEvent implements OneGraphNode & GitHubNode { """ Represents a mention made by one issue or pull request to another. """ -type GitHubCrossReferencedEvent implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode { +type GitHubCrossReferencedEvent implements OneGraphNode & + GitHubUniformResourceLocatable & + GitHubNode { """ Identifies the actor who performed the event. """ @@ -250630,9 +281306,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250663,9 +281342,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250700,9 +281382,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250733,9 +281418,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250766,9 +281454,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250791,9 +281482,12 @@ type GitHubMarkedAsDuplicateEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250820,9 +281514,12 @@ type GitHubMentionedEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250858,9 +281555,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250887,9 +281587,12 @@ type GitHubMovedColumnsInProjectEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250916,9 +281619,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250966,9 +281672,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250995,9 +281704,12 @@ type GitHubRemovedFromProjectEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -251037,9 +281749,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -251066,9 +281781,12 @@ type GitHubReopenedEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -251095,9 +281813,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -251128,9 +281849,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -251140,7 +281864,11 @@ type GitHubTransferredEvent implements OneGraphNode & GitHubNode { """ Types that can be assigned to issues. """ -union GitHubAssignee = GitHubUser | GitHubOrganization | GitHubMannequin | GitHubBot +union GitHubAssignee = + | GitHubUser + | GitHubOrganization + | GitHubMannequin + | GitHubBot """ An object that can have users assigned to it. @@ -251149,15 +281877,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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! } """ @@ -251188,10 +281925,15 @@ 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! + @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! """ Unique id across all of OneGraph """ @@ -251214,9 +281956,12 @@ type GitHubUnmarkedAsDuplicateEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -251243,9 +281988,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -251255,7 +282003,37 @@ type GitHubUnpinnedEvent implements OneGraphNode & GitHubNode { """ An item in an issue timeline """ -union GitHubIssueTimelineItems = GitHubUserBlockedEvent | GitHubUnsubscribedEvent | GitHubUnpinnedEvent | GitHubUnmarkedAsDuplicateEvent | GitHubUnlockedEvent | GitHubUnlabeledEvent | GitHubUnassignedEvent | GitHubTransferredEvent | GitHubSubscribedEvent | GitHubReopenedEvent | GitHubRenamedTitleEvent | GitHubRemovedFromProjectEvent | GitHubReferencedEvent | GitHubPinnedEvent | GitHubMovedColumnsInProjectEvent | GitHubMilestonedEvent | GitHubMentionedEvent | GitHubMarkedAsDuplicateEvent | GitHubLockedEvent | GitHubLabeledEvent | GitHubIssueComment | GitHubDisconnectedEvent | GitHubDemilestonedEvent | GitHubCrossReferencedEvent | GitHubConvertedNoteToIssueEvent | GitHubConnectedEvent | GitHubCommentDeletedEvent | GitHubClosedEvent | GitHubAssignedEvent | GitHubAddedToProjectEvent +union GitHubIssueTimelineItems = + | GitHubUserBlockedEvent + | GitHubUnsubscribedEvent + | GitHubUnpinnedEvent + | GitHubUnmarkedAsDuplicateEvent + | GitHubUnlockedEvent + | GitHubUnlabeledEvent + | GitHubUnassignedEvent + | GitHubTransferredEvent + | GitHubSubscribedEvent + | GitHubReopenedEvent + | GitHubRenamedTitleEvent + | GitHubRemovedFromProjectEvent + | GitHubReferencedEvent + | GitHubPinnedEvent + | GitHubMovedColumnsInProjectEvent + | GitHubMilestonedEvent + | GitHubMentionedEvent + | GitHubMarkedAsDuplicateEvent + | GitHubLockedEvent + | GitHubLabeledEvent + | GitHubIssueComment + | GitHubDisconnectedEvent + | GitHubDemilestonedEvent + | GitHubCrossReferencedEvent + | GitHubConvertedNoteToIssueEvent + | GitHubConnectedEvent + | GitHubCommentDeletedEvent + | GitHubClosedEvent + | GitHubAssignedEvent + | GitHubAddedToProjectEvent """ An object that can have labels assigned to it. @@ -251264,17 +282042,28 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 } """ @@ -251301,9 +282090,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -251313,7 +282105,39 @@ type GitHubUnlabeledEvent implements OneGraphNode & GitHubNode { """ An item in an pull request timeline """ -union GitHubPullRequestTimelineItem = GitHubUserBlockedEvent | GitHubUnsubscribedEvent | GitHubUnlockedEvent | GitHubUnlabeledEvent | GitHubUnassignedEvent | GitHubSubscribedEvent | GitHubReviewRequestedEvent | GitHubReviewRequestRemovedEvent | GitHubReviewDismissedEvent | GitHubReopenedEvent | GitHubRenamedTitleEvent | GitHubReferencedEvent | GitHubPullRequestReviewThread | GitHubPullRequestReviewComment | GitHubPullRequestReview | GitHubMilestonedEvent | GitHubMergedEvent | GitHubLockedEvent | GitHubLabeledEvent | GitHubIssueComment | GitHubHeadRefRestoredEvent | GitHubHeadRefForcePushedEvent | GitHubHeadRefDeletedEvent | GitHubDeploymentEnvironmentChangedEvent | GitHubDeployedEvent | GitHubDemilestonedEvent | GitHubCrossReferencedEvent | GitHubCommitCommentThread | GitHubCommit | GitHubClosedEvent | GitHubBaseRefForcePushedEvent | GitHubAssignedEvent +union GitHubPullRequestTimelineItem = + | GitHubUserBlockedEvent + | GitHubUnsubscribedEvent + | GitHubUnlockedEvent + | GitHubUnlabeledEvent + | GitHubUnassignedEvent + | GitHubSubscribedEvent + | GitHubReviewRequestedEvent + | GitHubReviewRequestRemovedEvent + | GitHubReviewDismissedEvent + | GitHubReopenedEvent + | GitHubRenamedTitleEvent + | GitHubReferencedEvent + | GitHubPullRequestReviewThread + | GitHubPullRequestReviewComment + | GitHubPullRequestReview + | GitHubMilestonedEvent + | GitHubMergedEvent + | GitHubLockedEvent + | GitHubLabeledEvent + | GitHubIssueComment + | GitHubHeadRefRestoredEvent + | GitHubHeadRefForcePushedEvent + | GitHubHeadRefDeletedEvent + | GitHubDeploymentEnvironmentChangedEvent + | GitHubDeployedEvent + | GitHubDemilestonedEvent + | GitHubCrossReferencedEvent + | GitHubCommitCommentThread + | GitHubCommit + | GitHubClosedEvent + | GitHubBaseRefForcePushedEvent + | GitHubAssignedEvent """ An object that can be locked. @@ -251349,9 +282173,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -251361,7 +282188,26 @@ type GitHubUnlockedEvent implements OneGraphNode & GitHubNode { """ An item in an issue timeline """ -union GitHubIssueTimelineItem = GitHubUserBlockedEvent | GitHubUnsubscribedEvent | GitHubUnlockedEvent | GitHubUnlabeledEvent | GitHubUnassignedEvent | GitHubTransferredEvent | GitHubSubscribedEvent | GitHubReopenedEvent | GitHubRenamedTitleEvent | GitHubReferencedEvent | GitHubMilestonedEvent | GitHubLockedEvent | GitHubLabeledEvent | GitHubIssueComment | GitHubDemilestonedEvent | GitHubCrossReferencedEvent | GitHubCommit | GitHubClosedEvent | GitHubAssignedEvent +union GitHubIssueTimelineItem = + | GitHubUserBlockedEvent + | GitHubUnsubscribedEvent + | GitHubUnlockedEvent + | GitHubUnlabeledEvent + | GitHubUnassignedEvent + | GitHubTransferredEvent + | GitHubSubscribedEvent + | GitHubReopenedEvent + | GitHubRenamedTitleEvent + | GitHubReferencedEvent + | GitHubMilestonedEvent + | GitHubLockedEvent + | GitHubLabeledEvent + | GitHubIssueComment + | GitHubDemilestonedEvent + | GitHubCrossReferencedEvent + | GitHubCommit + | GitHubClosedEvent + | GitHubAssignedEvent """ An edge in a connection. @@ -251458,15 +282304,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -251522,30 +282377,47 @@ 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( + """ + How many topics to return. + """ + 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( + """ + 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 the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -251563,17 +282435,28 @@ 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( + """ + 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. """ @@ -251648,9 +282531,12 @@ interface GitHubRepositoryOwner { """ A URL pointing to the owner's public avatar. """ - avatarUrl(""" - The size of the resulting square image. - """ size: Int): String! + avatarUrl( + """ + The size of the resulting square image. + """ + size: Int + ): String! """ """ @@ -251662,56 +282548,101 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - 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( + """ + 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 of Repository to find. - """ name: String!): GitHubRepository + repository( + """ + Name of Repository to find. + """ + name: String! + ): GitHubRepository """ The HTTP URL for the owner. """ @@ -251803,9 +282734,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -251851,9 +282785,12 @@ 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( + """ + Optionally truncate the returned file to this length. + """ + truncate: Int + ): String } """ @@ -251895,19 +282832,31 @@ type GitHubGistCommentConnection { """ A Gist. """ -type GitHubGist implements OneGraphNode & GitHubUniformResourceLocatable & GitHubStarrable & GitHubNode { +type GitHubGist implements OneGraphNode & + GitHubUniformResourceLocatable & + GitHubStarrable & + GitHubNode { """ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -251919,25 +282868,41 @@ 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( + """ + 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(""" - 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( + """ + 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! """ """ @@ -251969,17 +282934,28 @@ 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( + """ + 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. """ @@ -251992,9 +282968,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -252004,7 +282983,13 @@ type GitHubGist implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ Represents a comment on an Gist. """ -type GitHubGistComment implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubNode & GitHubMinimizable & GitHubDeletable & GitHubComment { +type GitHubGistComment implements OneGraphNode & + GitHubUpdatableComment & + GitHubUpdatable & + GitHubNode & + GitHubMinimizable & + GitHubDeletable & + GitHubComment { """ The actor who authored the comment. """ @@ -252076,15 +283061,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -252105,9 +283099,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -252146,27 +283143,45 @@ interface GitHubProjectOwner { """ Find project by number. """ - project(""" - The project number to find. - """ number: Int!): GitHubProject + project( + """ + The project number to find. + """ + 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 """ @@ -252286,9 +283301,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -252338,17 +283356,28 @@ 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( + """ + 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. """ @@ -252385,9 +283414,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -252433,7 +283465,10 @@ type GitHubProjectColumnConnection { """ Projects manage issues, pull requests and notes within a project owner. """ -type GitHubProject implements OneGraphNode & GitHubUpdatable & GitHubNode & GitHubClosable { +type GitHubProject implements OneGraphNode & + GitHubUpdatable & + GitHubNode & + GitHubClosable { """ The project's description body. """ @@ -252453,15 +283488,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -252493,17 +283537,28 @@ 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( + """ + 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 """ @@ -252524,9 +283579,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -252561,7 +283619,10 @@ enum GitHubMilestoneState { """ Represents a Milestone object on a given repository. """ -type GitHubMilestone implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode & GitHubClosable { +type GitHubMilestone implements OneGraphNode & + GitHubUniformResourceLocatable & + GitHubNode & + GitHubClosable { """ `true` if the object is closed (definition of closed may depend on type) """ @@ -252597,23 +283658,40 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -252621,25 +283699,44 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -252664,9 +283761,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -252675,7 +283775,7 @@ type GitHubMilestone implements OneGraphNode & GitHubUniformResourceLocatable & enum GitHubLabelOrderField { """ - Order labels by name + Order labels by name """ NAME """ @@ -252810,23 +283910,40 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -252834,25 +283951,44 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -252869,9 +284005,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -252943,15 +284082,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 """ @@ -253017,15 +284165,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 """ @@ -253147,7 +284304,19 @@ type GitHubIssueCommentConnection { """ An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project. """ -type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubUniformResourceLocatable & GitHubSubscribable & GitHubRepositoryNode & GitHubReactable & GitHubNode & GitHubLockable & GitHubLabelable & GitHubComment & GitHubClosable & GitHubAssignable { +type GitHubIssue implements OneGraphNode & + GitHubUpdatableComment & + GitHubUpdatable & + GitHubUniformResourceLocatable & + GitHubSubscribable & + GitHubRepositoryNode & + GitHubReactable & + GitHubNode & + GitHubLockable & + GitHubLabelable & + GitHubComment & + GitHubClosable & + GitHubAssignable { """ Reason that the conversation was locked. """ @@ -253155,15 +284324,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -253195,15 +284373,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -253223,9 +284410,12 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ The hovercard information for this issue """ - hovercard(""" - Whether or not to include notification contexts - """ includeNotificationContexts: Boolean): GitHubHovercard! + hovercard( + """ + Whether or not to include notification contexts + """ + includeNotificationContexts: Boolean + ): GitHubHovercard! """ """ @@ -253237,17 +284427,28 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 """ @@ -253267,29 +284468,49 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - 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( + """ + 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. """ @@ -253301,19 +284522,32 @@ 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( + """ + 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. """ @@ -253329,36 +284563,64 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -253374,15 +284636,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 """ @@ -253411,9 +284682,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -253423,7 +284697,15 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ Represents a comment on an Issue. """ -type GitHubIssueComment implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubRepositoryNode & GitHubReactable & GitHubNode & GitHubMinimizable & GitHubDeletable & GitHubComment { +type GitHubIssueComment implements OneGraphNode & + GitHubUpdatableComment & + GitHubUpdatable & + GitHubRepositoryNode & + GitHubReactable & + GitHubNode & + GitHubMinimizable & + GitHubDeletable & + GitHubComment { """ The actor who authored the comment. """ @@ -253500,19 +284782,32 @@ 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( + """ + 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. """ @@ -253532,15 +284827,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -253577,9 +284881,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -253712,9 +285019,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -253800,7 +285110,14 @@ type GitHubPullRequestReviewCommentConnection { """ A review object for a given pull request. """ -type GitHubPullRequestReview implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubRepositoryNode & GitHubReactable & GitHubNode & GitHubDeletable & GitHubComment { +type GitHubPullRequestReview implements OneGraphNode & + GitHubUpdatableComment & + GitHubUpdatable & + GitHubRepositoryNode & + GitHubReactable & + GitHubNode & + GitHubDeletable & + GitHubComment { """ The actor who authored the comment. """ @@ -253824,15 +285141,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -253868,15 +285194,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -253892,19 +285227,32 @@ 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( + """ + 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. """ @@ -253932,15 +285280,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -253961,9 +285318,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -253973,7 +285333,9 @@ type GitHubPullRequestReview implements OneGraphNode & GitHubUpdatableComment & """ Represents a Git commit part of a pull request. """ -type GitHubPullRequestCommit implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode { +type GitHubPullRequestCommit implements OneGraphNode & + GitHubUniformResourceLocatable & + GitHubNode { """ The Git commit object """ @@ -253994,9 +285356,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -254029,7 +285394,9 @@ enum GitHubPullRequestReviewState { """ Represents a 'review_dismissed' event on a given issue or pull request. """ -type GitHubReviewDismissedEvent implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode { +type GitHubReviewDismissedEvent implements OneGraphNode & + GitHubUniformResourceLocatable & + GitHubNode { """ Identifies the actor who performed the event. """ @@ -254078,9 +285445,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -254104,13 +285474,19 @@ interface GitHubUniformResourceLocatable { """ A placeholder user for attribution of imported data on GitHub. """ -type GitHubMannequin implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode & GitHubActor { +type GitHubMannequin implements OneGraphNode & + GitHubUniformResourceLocatable & + GitHubNode & + GitHubActor { """ A URL pointing to the GitHub App's public avatar. """ - avatarUrl(""" - The size of the resulting square image. - """ size: Int): String! + avatarUrl( + """ + The size of the resulting square image. + """ + size: Int + ): String! """ Identifies the date and time when the object was created. """ @@ -254143,9 +285519,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -254514,9 +285893,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -254676,43 +286058,73 @@ type GitHubTeamConnection { """ A team of users in an organization. """ -type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitHubMemberStatusable { +type GitHubTeam implements OneGraphNode & + GitHubSubscribable & + GitHubNode & + GitHubMemberStatusable { """ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - The size in pixels of the resulting square image. - """ 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -254728,25 +286140,41 @@ 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( + """ + The sequence number of the discussion to find. + """ + 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( + """ + 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 """ @@ -254770,49 +286198,86 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - 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( + """ + 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(""" - 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( + """ + 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 """ @@ -254848,19 +286313,32 @@ 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( + """ + 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 """ @@ -254905,9 +286383,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -254935,9 +286416,12 @@ type GitHubPushAllowance implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -255077,15 +286561,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -255109,17 +286602,28 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -255127,15 +286631,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -255179,18 +286692,30 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 """ @@ -255236,33 +286761,61 @@ type GitHubBranchProtectionRuleConnection { """ A repository contains the content for a project. """ -type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & GitHubSubscribable & GitHubStarrable & GitHubRepositoryInfo & GitHubRegistryPackageSearch & GitHubRegistryPackageOwner & GitHubProjectOwner & GitHubNode { +type GitHubRepository implements OneGraphNode & + GitHubUniformResourceLocatable & + GitHubSubscribable & + GitHubStarrable & + GitHubRepositoryInfo & + GitHubRegistryPackageSearch & + GitHubRegistryPackageOwner & + GitHubProjectOwner & + GitHubNode { """ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 """ @@ -255270,31 +286823,53 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -255314,31 +286889,53 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -255358,25 +286955,44 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 """ @@ -255432,71 +287048,121 @@ 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( + """ + The number for the issue to be returned. + """ + 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( + """ + The number for the issue to be returned. + """ + 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Label name - """ name: String!): GitHubLabel + label( + """ + Label name + """ + 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( + """ + 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(""" - 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( + """ + 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 """ @@ -255508,17 +287174,28 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -255526,25 +287203,41 @@ 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( + """ + The number for the milestone to be returned. + """ + 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( + """ + 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. """ @@ -255560,11 +287253,16 @@ 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( + """ + 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. """ @@ -255584,27 +287282,45 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ Find project by number. """ - project(""" - The project number to find. - """ number: Int!): GitHubProject + project( + """ + The project number to find. + """ + 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 """ @@ -255616,31 +287332,53 @@ 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( + """ + 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -255652,103 +287390,184 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - The name of the Tag the Release was created from - """ 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(""" - 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( + """ + 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 """ @@ -255756,9 +287575,12 @@ 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( + """ + How many characters to return. + """ + limit: Int + ): String! """ Whether or not squash-merging is enabled on this repository. """ @@ -255770,29 +287592,49 @@ 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( + """ + 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -255844,44 +287686,73 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - 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( + """ + 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 the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + @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! """ Unique id across all of OneGraph """ @@ -255950,25 +287821,44 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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! """ """ @@ -255989,9 +287879,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -256078,7 +287971,19 @@ enum GitHubLockReason { """ A repository pull request. """ -type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubUniformResourceLocatable & GitHubSubscribable & GitHubRepositoryNode & GitHubReactable & GitHubNode & GitHubLockable & GitHubLabelable & GitHubComment & GitHubClosable & GitHubAssignable { +type GitHubPullRequest implements OneGraphNode & + GitHubUpdatableComment & + GitHubUpdatable & + GitHubUniformResourceLocatable & + GitHubSubscribable & + GitHubRepositoryNode & + GitHubReactable & + GitHubNode & + GitHubLockable & + GitHubLabelable & + GitHubComment & + GitHubClosable & + GitHubAssignable { """ Reason that the conversation was locked. """ @@ -256090,15 +287995,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -256158,27 +288072,45 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -256202,15 +288134,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -256234,9 +288175,12 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ The hovercard information for this issue """ - hovercard(""" - Whether or not to include notification contexts - """ includeNotificationContexts: Boolean): GitHubHovercard! + hovercard( + """ + Whether or not to include notification contexts + """ + includeNotificationContexts: Boolean + ): GitHubHovercard! """ """ @@ -256256,17 +288200,28 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 """ @@ -256310,15 +288265,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -256330,17 +288294,28 @@ 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( + """ + 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. """ @@ -256352,19 +288327,32 @@ 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( + """ + 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. """ @@ -256388,43 +288376,74 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - 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( + """ + 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. """ @@ -256436,36 +288455,64 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -256481,15 +288528,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -256518,9 +288574,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -256566,7 +288625,11 @@ type GitHubPullRequestConnection { """ Represents a Git commit. """ -type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & GitHubSubscribable & GitHubNode & GitHubGitObject { +type GitHubCommit implements OneGraphNode & + GitHubUniformResourceLocatable & + GitHubSubscribable & + GitHubNode & + GitHubGitObject { """ An abbreviated version of the Git object ID """ @@ -256578,17 +288641,28 @@ 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( + """ + 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. """ @@ -256604,9 +288678,12 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ Fetches `git blame` information. """ - blame(""" - The file whose Git blame information you want. - """ path: String!): GitHubBlame! + blame( + """ + The file whose Git blame information you want. + """ + path: String! + ): GitHubBlame! """ The number of changed files in this commit. """ @@ -256614,15 +288691,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 """ @@ -256650,39 +288736,69 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - 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( + """ + 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! """ """ @@ -256718,15 +288834,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -256754,15 +288879,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. @@ -256797,9 +288931,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -256809,7 +288946,15 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ A review comment associated with a given repository pull request. """ -type GitHubPullRequestReviewComment implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubRepositoryNode & GitHubReactable & GitHubNode & GitHubMinimizable & GitHubDeletable & GitHubComment { +type GitHubPullRequestReviewComment implements OneGraphNode & + GitHubUpdatableComment & + GitHubUpdatable & + GitHubRepositoryNode & + GitHubReactable & + GitHubNode & + GitHubMinimizable & + GitHubDeletable & + GitHubComment { """ The actor who authored the comment. """ @@ -256917,19 +289062,32 @@ 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( + """ + 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. """ @@ -256957,15 +289115,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -256990,9 +289157,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -257018,19 +289188,32 @@ 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( + """ + 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 """ @@ -257091,15 +289274,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -257109,7 +289301,14 @@ type GitHubReactionGroup { """ A comment on a team discussion. """ -type GitHubTeamDiscussionComment implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubUniformResourceLocatable & GitHubReactable & GitHubNode & GitHubDeletable & GitHubComment { +type GitHubTeamDiscussionComment implements OneGraphNode & + GitHubUpdatableComment & + GitHubUpdatable & + GitHubUniformResourceLocatable & + GitHubReactable & + GitHubNode & + GitHubDeletable & + GitHubComment { """ The actor who authored the comment. """ @@ -257181,19 +289380,32 @@ 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( + """ + 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 """ @@ -257209,15 +289421,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -257238,9 +289459,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -257317,7 +289541,15 @@ enum GitHubCommentAuthorAssociation { """ A team discussion. """ -type GitHubTeamDiscussion implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubUniformResourceLocatable & GitHubSubscribable & GitHubReactable & GitHubNode & GitHubDeletable & GitHubComment { +type GitHubTeamDiscussion implements OneGraphNode & + GitHubUpdatableComment & + GitHubUpdatable & + GitHubUniformResourceLocatable & + GitHubSubscribable & + GitHubReactable & + GitHubNode & + GitHubDeletable & + GitHubComment { """ The actor who authored the comment. """ @@ -257345,19 +289577,32 @@ 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( + """ + 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 """ @@ -257417,19 +289662,32 @@ 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( + """ + 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 """ @@ -257453,15 +289711,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -257494,9 +289761,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -257541,9 +289811,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -257553,7 +289826,54 @@ type GitHubUnsubscribedEvent implements OneGraphNode & GitHubNode { """ An item in a pull request timeline """ -union GitHubPullRequestTimelineItems = GitHubUserBlockedEvent | GitHubUnsubscribedEvent | GitHubUnpinnedEvent | GitHubUnmarkedAsDuplicateEvent | GitHubUnlockedEvent | GitHubUnlabeledEvent | GitHubUnassignedEvent | GitHubTransferredEvent | GitHubSubscribedEvent | GitHubReviewRequestedEvent | GitHubReviewRequestRemovedEvent | GitHubReviewDismissedEvent | GitHubReopenedEvent | GitHubRenamedTitleEvent | GitHubRemovedFromProjectEvent | GitHubReferencedEvent | GitHubReadyForReviewEvent | GitHubPullRequestRevisionMarker | GitHubPullRequestReviewThread | GitHubPullRequestReview | GitHubPullRequestCommitCommentThread | GitHubPullRequestCommit | GitHubPinnedEvent | GitHubMovedColumnsInProjectEvent | GitHubMilestonedEvent | GitHubMergedEvent | GitHubMentionedEvent | GitHubMarkedAsDuplicateEvent | GitHubLockedEvent | GitHubLabeledEvent | GitHubIssueComment | GitHubHeadRefRestoredEvent | GitHubHeadRefForcePushedEvent | GitHubHeadRefDeletedEvent | GitHubDisconnectedEvent | GitHubDeploymentEnvironmentChangedEvent | GitHubDeployedEvent | GitHubDemilestonedEvent | GitHubCrossReferencedEvent | GitHubConvertedNoteToIssueEvent | GitHubConnectedEvent | GitHubCommentDeletedEvent | GitHubClosedEvent | GitHubBaseRefForcePushedEvent | GitHubBaseRefChangedEvent | GitHubAssignedEvent | GitHubAddedToProjectEvent +union GitHubPullRequestTimelineItems = + | GitHubUserBlockedEvent + | GitHubUnsubscribedEvent + | GitHubUnpinnedEvent + | GitHubUnmarkedAsDuplicateEvent + | GitHubUnlockedEvent + | GitHubUnlabeledEvent + | GitHubUnassignedEvent + | GitHubTransferredEvent + | GitHubSubscribedEvent + | GitHubReviewRequestedEvent + | GitHubReviewRequestRemovedEvent + | GitHubReviewDismissedEvent + | GitHubReopenedEvent + | GitHubRenamedTitleEvent + | GitHubRemovedFromProjectEvent + | GitHubReferencedEvent + | GitHubReadyForReviewEvent + | GitHubPullRequestRevisionMarker + | GitHubPullRequestReviewThread + | GitHubPullRequestReview + | GitHubPullRequestCommitCommentThread + | GitHubPullRequestCommit + | GitHubPinnedEvent + | GitHubMovedColumnsInProjectEvent + | GitHubMilestonedEvent + | GitHubMergedEvent + | GitHubMentionedEvent + | GitHubMarkedAsDuplicateEvent + | GitHubLockedEvent + | GitHubLabeledEvent + | GitHubIssueComment + | GitHubHeadRefRestoredEvent + | GitHubHeadRefForcePushedEvent + | GitHubHeadRefDeletedEvent + | GitHubDisconnectedEvent + | GitHubDeploymentEnvironmentChangedEvent + | GitHubDeployedEvent + | GitHubDemilestonedEvent + | GitHubCrossReferencedEvent + | GitHubConvertedNoteToIssueEvent + | GitHubConnectedEvent + | GitHubCommentDeletedEvent + | GitHubClosedEvent + | GitHubBaseRefForcePushedEvent + | GitHubBaseRefChangedEvent + | GitHubAssignedEvent + | GitHubAddedToProjectEvent enum GitHubUserBlockDuration { """ @@ -257602,9 +289922,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -257647,9 +289970,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -257804,9 +290130,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -257824,9 +290153,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! } """ @@ -257842,13 +290174,19 @@ type OneGraphLinkedNodesConnection { """ A special type of user which takes actions on behalf of GitHub Apps. """ -type GitHubBot implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode & GitHubActor { +type GitHubBot implements OneGraphNode & + GitHubUniformResourceLocatable & + GitHubNode & + GitHubActor { """ A URL pointing to the GitHub App's public avatar. """ - avatarUrl(""" - The size of the resulting square image. - """ size: Int): String! + avatarUrl( + """ + The size of the resulting square image. + """ + size: Int + ): String! """ Identifies the date and time when the object was created. """ @@ -257877,9 +290215,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -257894,7 +290235,12 @@ union GitHubAuditEntryActor = GitHubUser | GitHubOrganization | GitHubBot """ Audit log entry for a team.remove_repository event. """ -type GitHubTeamRemoveRepositoryAuditEntry implements OneGraphNode & GitHubTeamAuditEntryData & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry { +type GitHubTeamRemoveRepositoryAuditEntry implements OneGraphNode & + GitHubTeamAuditEntryData & + GitHubRepositoryAuditEntryData & + GitHubOrganizationAuditEntryData & + GitHubNode & + GitHubAuditEntry { """ The action name """ @@ -258003,9 +290349,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -258015,7 +290364,65 @@ type GitHubTeamRemoveRepositoryAuditEntry implements OneGraphNode & GitHubTeamAu """ An audit entry in an organization audit log. """ -union GitHubOrganizationAuditEntry = GitHubTeamRemoveRepositoryAuditEntry | GitHubTeamRemoveMemberAuditEntry | GitHubTeamChangeParentTeamAuditEntry | GitHubTeamAddRepositoryAuditEntry | GitHubTeamAddMemberAuditEntry | GitHubRepositoryVisibilityChangeEnableAuditEntry | GitHubRepositoryVisibilityChangeDisableAuditEntry | GitHubRepoRemoveTopicAuditEntry | GitHubRepoRemoveMemberAuditEntry | GitHubRepoDestroyAuditEntry | GitHubRepoCreateAuditEntry | GitHubRepoConfigUnlockAnonymousGitAccessAuditEntry | GitHubRepoConfigLockAnonymousGitAccessAuditEntry | GitHubRepoConfigEnableSockpuppetDisallowedAuditEntry | GitHubRepoConfigEnableContributorsOnlyAuditEntry | GitHubRepoConfigEnableCollaboratorsOnlyAuditEntry | GitHubRepoConfigEnableAnonymousGitAccessAuditEntry | GitHubRepoConfigDisableSockpuppetDisallowedAuditEntry | GitHubRepoConfigDisableContributorsOnlyAuditEntry | GitHubRepoConfigDisableCollaboratorsOnlyAuditEntry | GitHubRepoConfigDisableAnonymousGitAccessAuditEntry | GitHubRepoChangeMergeSettingAuditEntry | GitHubRepoArchivedAuditEntry | GitHubRepoAddTopicAuditEntry | GitHubRepoAddMemberAuditEntry | GitHubRepoAccessAuditEntry | GitHubPrivateRepositoryForkingEnableAuditEntry | GitHubPrivateRepositoryForkingDisableAuditEntry | GitHubOrgUpdateMemberRepositoryInvitationPermissionAuditEntry | GitHubOrgUpdateMemberRepositoryCreationPermissionAuditEntry | GitHubOrgUpdateMemberAuditEntry | GitHubOrgUpdateDefaultRepositoryPermissionAuditEntry | GitHubOrgUnblockUserAuditEntry | GitHubOrgRestoreMemberAuditEntry | GitHubOrgRemoveOutsideCollaboratorAuditEntry | GitHubOrgRemoveMemberAuditEntry | GitHubOrgRemoveBillingManagerAuditEntry | GitHubOrgOauthAppAccessRequestedAuditEntry | GitHubOrgOauthAppAccessDeniedAuditEntry | GitHubOrgOauthAppAccessApprovedAuditEntry | GitHubOrgInviteToBusinessAuditEntry | GitHubOrgInviteMemberAuditEntry | GitHubOrgEnableTwoFactorRequirementAuditEntry | GitHubOrgEnableSamlAuditEntry | GitHubOrgEnableOauthAppRestrictionsAuditEntry | GitHubOrgDisableTwoFactorRequirementAuditEntry | GitHubOrgDisableSamlAuditEntry | GitHubOrgDisableOauthAppRestrictionsAuditEntry | GitHubOrgCreateAuditEntry | GitHubOrgConfigEnableCollaboratorsOnlyAuditEntry | GitHubOrgConfigDisableCollaboratorsOnlyAuditEntry | GitHubOrgBlockUserAuditEntry | GitHubOrgAddMemberAuditEntry | GitHubOrgAddBillingManagerAuditEntry | GitHubOauthApplicationCreateAuditEntry | GitHubMembersCanDeleteReposEnableAuditEntry | GitHubMembersCanDeleteReposDisableAuditEntry | GitHubMembersCanDeleteReposClearAuditEntry +union GitHubOrganizationAuditEntry = + | GitHubTeamRemoveRepositoryAuditEntry + | GitHubTeamRemoveMemberAuditEntry + | GitHubTeamChangeParentTeamAuditEntry + | GitHubTeamAddRepositoryAuditEntry + | GitHubTeamAddMemberAuditEntry + | GitHubRepositoryVisibilityChangeEnableAuditEntry + | GitHubRepositoryVisibilityChangeDisableAuditEntry + | GitHubRepoRemoveTopicAuditEntry + | GitHubRepoRemoveMemberAuditEntry + | GitHubRepoDestroyAuditEntry + | GitHubRepoCreateAuditEntry + | GitHubRepoConfigUnlockAnonymousGitAccessAuditEntry + | GitHubRepoConfigLockAnonymousGitAccessAuditEntry + | GitHubRepoConfigEnableSockpuppetDisallowedAuditEntry + | GitHubRepoConfigEnableContributorsOnlyAuditEntry + | GitHubRepoConfigEnableCollaboratorsOnlyAuditEntry + | GitHubRepoConfigEnableAnonymousGitAccessAuditEntry + | GitHubRepoConfigDisableSockpuppetDisallowedAuditEntry + | GitHubRepoConfigDisableContributorsOnlyAuditEntry + | GitHubRepoConfigDisableCollaboratorsOnlyAuditEntry + | GitHubRepoConfigDisableAnonymousGitAccessAuditEntry + | GitHubRepoChangeMergeSettingAuditEntry + | GitHubRepoArchivedAuditEntry + | GitHubRepoAddTopicAuditEntry + | GitHubRepoAddMemberAuditEntry + | GitHubRepoAccessAuditEntry + | GitHubPrivateRepositoryForkingEnableAuditEntry + | GitHubPrivateRepositoryForkingDisableAuditEntry + | GitHubOrgUpdateMemberRepositoryInvitationPermissionAuditEntry + | GitHubOrgUpdateMemberRepositoryCreationPermissionAuditEntry + | GitHubOrgUpdateMemberAuditEntry + | GitHubOrgUpdateDefaultRepositoryPermissionAuditEntry + | GitHubOrgUnblockUserAuditEntry + | GitHubOrgRestoreMemberAuditEntry + | GitHubOrgRemoveOutsideCollaboratorAuditEntry + | GitHubOrgRemoveMemberAuditEntry + | GitHubOrgRemoveBillingManagerAuditEntry + | GitHubOrgOauthAppAccessRequestedAuditEntry + | GitHubOrgOauthAppAccessDeniedAuditEntry + | GitHubOrgOauthAppAccessApprovedAuditEntry + | GitHubOrgInviteToBusinessAuditEntry + | GitHubOrgInviteMemberAuditEntry + | GitHubOrgEnableTwoFactorRequirementAuditEntry + | GitHubOrgEnableSamlAuditEntry + | GitHubOrgEnableOauthAppRestrictionsAuditEntry + | GitHubOrgDisableTwoFactorRequirementAuditEntry + | GitHubOrgDisableSamlAuditEntry + | GitHubOrgDisableOauthAppRestrictionsAuditEntry + | GitHubOrgCreateAuditEntry + | GitHubOrgConfigEnableCollaboratorsOnlyAuditEntry + | GitHubOrgConfigDisableCollaboratorsOnlyAuditEntry + | GitHubOrgBlockUserAuditEntry + | GitHubOrgAddMemberAuditEntry + | GitHubOrgAddBillingManagerAuditEntry + | GitHubOauthApplicationCreateAuditEntry + | GitHubMembersCanDeleteReposEnableAuditEntry + | GitHubMembersCanDeleteReposDisableAuditEntry + | GitHubMembersCanDeleteReposClearAuditEntry """ An edge in a connection. @@ -258056,35 +290463,64 @@ type GitHubOrganizationAuditEntryConnection { """ An account on GitHub, with one or more owners, that has repositories, members and teams. """ -type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable & GitHubSponsorable & GitHubRepositoryOwner & GitHubRegistryPackageSearch & GitHubRegistryPackageOwner & GitHubProjectOwner & GitHubProfileOwner & GitHubNode & GitHubMemberStatusable & GitHubActor { +type GitHubOrganization implements OneGraphNode & + GitHubUniformResourceLocatable & + GitHubSponsorable & + GitHubRepositoryOwner & + GitHubRegistryPackageSearch & + GitHubRegistryPackageOwner & + GitHubProjectOwner & + GitHubProfileOwner & + GitHubNode & + GitHubMemberStatusable & + GitHubActor { """ 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( + """ + Filter to only a particular kind of pinnable item. + """ + 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( + """ + 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(""" - The size of the resulting square image. - """ size: Int): String! + avatarUrl( + """ + The size of the resulting square image. + """ + size: Int + ): String! """ Identifies the date and time when the object was created. """ @@ -258128,29 +290564,49 @@ 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( + """ + 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -258170,43 +290626,74 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -258214,50 +290701,89 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - The project number to find. - """ number: Int!): GitHubProject + project( + """ + The project number to find. + """ + 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 """ @@ -258269,75 +290795,137 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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 of Repository to find. - """ 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. """ @@ -258357,65 +290945,115 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - The name or slug of the team to find. - """ slug: String!): GitHubTeam + team( + """ + The name or slug of the team to find. + """ + 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 """ @@ -258460,9 +291098,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -258476,9 +291117,12 @@ interface GitHubActor { """ A URL pointing to the actor's public avatar. """ - avatarUrl(""" - The size of the resulting square image. - """ size: Int): String! + avatarUrl( + """ + The size of the resulting square image. + """ + size: Int + ): String! """ The username of the actor. """ @@ -258496,7 +291140,15 @@ interface GitHubActor { """ Represents a comment on a given Commit. """ -type GitHubCommitComment implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubRepositoryNode & GitHubReactable & GitHubNode & GitHubMinimizable & GitHubDeletable & GitHubComment { +type GitHubCommitComment implements OneGraphNode & + GitHubUpdatableComment & + GitHubUpdatable & + GitHubRepositoryNode & + GitHubReactable & + GitHubNode & + GitHubMinimizable & + GitHubDeletable & + GitHubComment { """ The actor who authored the comment. """ @@ -258576,19 +291228,32 @@ 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( + """ + 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. """ @@ -258608,15 +291273,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -258641,9 +291315,12 @@ 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 the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -258724,19 +291401,34 @@ enum GitHubPinnableItemType { """ A user is an individual's account on GitHub that owns repositories and can make new content. """ -type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHubSponsorable & GitHubRepositoryOwner & GitHubRegistryPackageSearch & GitHubRegistryPackageOwner & GitHubProjectOwner & GitHubProfileOwner & GitHubNode & GitHubActor { +type GitHubUser implements OneGraphNode & + GitHubUniformResourceLocatable & + GitHubSponsorable & + GitHubRepositoryOwner & + GitHubRegistryPackageSearch & + GitHubRegistryPackageOwner & + GitHubProjectOwner & + GitHubProfileOwner & + GitHubNode & + GitHubActor { """ 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( + """ + Filter to only a particular kind of pinnable item. + """ + type: GitHubPinnableItemType + ): Boolean! """ A URL pointing to the user's public avatar. """ - avatarUrl(""" - The size of the resulting square image. - """ size: Int): String! + avatarUrl( + """ + The size of the resulting square image. + """ + size: Int + ): String! """ The user's public profile bio. """ @@ -258748,15 +291440,24 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -258768,13 +291469,20 @@ 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( + """ + 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. """ @@ -258790,67 +291498,113 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - The gist name to find. - """ name: String!): GitHubGist + gist( + """ + The gist name to find. + """ + 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - The ID of the subject to get the hovercard in the context of - """ primarySubjectId: ID): GitHubHovercard! + hovercard( + """ + The ID of the subject to get the hovercard in the context of + """ + primarySubjectId: ID + ): GitHubHovercard! """ """ @@ -258886,35 +291640,61 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -258934,49 +291714,83 @@ 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( + """ + The login of the organization to find. + """ + 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -258984,50 +291798,89 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - The project number to find. - """ number: Int!): GitHubProject + project( + """ + The project number to find. + """ + 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 """ @@ -259039,131 +291892,240 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - Returns the last _n_ elements from the list. - """ last: Int, """ - Returns the first _n_ elements from the list. - """ first: Int, """ - Returns the elements in 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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 of Repository to find. - """ name: String!): GitHubRepository + repository( + """ + Name of Repository to find. + """ + name: String! + ): GitHubRepository """ The HTTP path for this user """ @@ -259171,17 +292133,28 @@ 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( + """ + 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. """ @@ -259189,49 +292162,86 @@ 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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. """ @@ -259239,19 +292249,32 @@ 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( + """ + 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. """ @@ -259279,25 +292302,44 @@ 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( + """ + Returns the last _n_ elements from the list. + """ + last: Int + """ + Returns the first _n_ elements from the list. + """ + first: Int + """ + Returns the elements in 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. """ @@ -259308,19 +292350,29 @@ 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( + """ + 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 the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes( + """ + Filter the connected nodes that are returned by service or typename. + """ + filter: OneGraphLinkedNodesConnectionFilter + ): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -259348,7 +292400,7 @@ type GoogleUser { """ familyName: String """ - A link to the Google's + A link to the Google's """ profile: String """ @@ -259955,9 +293007,12 @@ 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( + """ + [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 } """ @@ -260605,9 +293660,12 @@ 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( + """ + Filter boards. Add multiple filters to include boards that pass any of the fitlers + """ + filters: [TrelloBoardFilterEnumArg!] + ): TrelloBoardsConnection members: [TrelloMember!] } @@ -261646,15 +294704,21 @@ type TrelloBoard { """ Labels for a board """ - labels(""" - Number of labels to fetch. Defaults to 50. - """ limit: Int): TrelloLabelsConnection + labels( + """ + Number of labels to fetch. Defaults to 50. + """ + limit: Int + ): TrelloLabelsConnection """ Power-ups for a board """ - plugins(""" - Get either enabled or available power-ups. Defaults to enabled. - """ 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. """ @@ -261926,9 +294990,12 @@ 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( + """ + Filter boards. Add multiple filters to include boards that pass any of the fitlers + """ + filters: [TrelloBoardFilterEnumArg!] + ): TrelloBoardsConnection cards: TrelloCardsConnection } @@ -263009,589 +296076,918 @@ type Viewer { """ serviceMetadata: OneGraphServicesMetadata! devTo: devTo - @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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.") + @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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - 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( + """ + 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(""" - The globally unique `oneGraphId`. - """ 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.") + @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.") + @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." + ) 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 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/Parser/__snapshots__/SchemaParserTests.ParseSchemaDefinition.snap b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaParserTests.ParseSchemaDefinition.snap index 68060dee750..0e200944904 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaParserTests.ParseSchemaDefinition.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Parser/__snapshots__/SchemaParserTests.ParseSchemaDefinition.snap @@ -1,4 +1,4 @@ -""" +""" Description """ schema @foo(a: "123") { 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 e22c2c72103..12092549205 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 @@ -7,7 +7,7 @@ query queryName($foo: ComplexType, $site: Site = MOBILE) { id alias: field1(first: 10, after: $foo) @include(if: $foo) { id - ... frag + ...frag } } } @@ -45,9 +45,16 @@ subscription StoryLikeSubscription($input: StoryLikeSubscribeInput) { "Fragment description" fragment frag on Friend { - foo(size: $size, bar: $b, obj: { key: "value", block: """ + foo( + size: $size + bar: $b + obj: { + key: "value" + block: """ block string uses \""" - """ }) + """ + } + ) } { diff --git a/src/HotChocolate/Language/test/Language.Tests/Utilities/__snapshots__/SyntaxPrinterTests.Serialize_KitchenSinkWithoutIndentation_OutputIsOneLine.snap b/src/HotChocolate/Language/test/Language.Tests/Utilities/__snapshots__/SyntaxPrinterTests.Serialize_KitchenSinkWithoutIndentation_OutputIsOneLine.snap index fab6903a9d3..752a1665d70 100644 --- a/src/HotChocolate/Language/test/Language.Tests/Utilities/__snapshots__/SyntaxPrinterTests.Serialize_KitchenSinkWithoutIndentation_OutputIsOneLine.snap +++ b/src/HotChocolate/Language/test/Language.Tests/Utilities/__snapshots__/SyntaxPrinterTests.Serialize_KitchenSinkWithoutIndentation_OutputIsOneLine.snap @@ -1,3 +1,3 @@ -"Query description" query queryName("$foo description" $foo: ComplexType, "$site description" $site: Site = MOBILE) { whoever123is: node(id: [123, 456]) { id ... on User @defer { field2 { id alias: field1(first: 10, after: $foo) @include(if: $foo) { id ... frag } } } ... @skip(unless: $foo) { id } ... { id } } } "Mutation description" mutation likeStory { like(story: 123) @defer { story { id } } } "Subscription description" subscription StoryLikeSubscription("$input description" $input: StoryLikeSubscribeInput) { storyLikeSubscribe(input: $input) { story { likers { count } likeSentence { text } } } } "Fragment description" fragment frag on Friend { foo(size: $size, bar: $b, obj: { key: "value", block: """ - block string uses \""" +"Query description" query queryName("$foo description" $foo: ComplexType, "$site description" $site: Site = MOBILE) { whoever123is: node(id: [123, 456]) { id ... on User @defer { field2 { id alias: field1(first: 10, after: $foo) @include(if: $foo) { id ...frag } } } ... @skip(unless: $foo) { id } ... { id } } } "Mutation description" mutation likeStory { like(story: 123) @defer { story { id } } } "Subscription description" subscription StoryLikeSubscription("$input description" $input: StoryLikeSubscribeInput) { storyLikeSubscribe(input: $input) { story { likers { count } likeSentence { text } } } } "Fragment description" fragment frag on Friend { foo(size: $size, bar: $b, obj: { key: "value", block: """ +block string uses \""" """ }) } { unnamed(truthy: true, falsey: false, nullish: null) query } 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 ae317e3c563..9f804dcc23c 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,18 +12,16 @@ 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 + 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] = [ - "string", - "string" - ]): String - six_abc(argument: InputType = { - key: "value" - }): Type + five_abc(argument: [String] = ["string", "string"]): String + six_abc(argument: InputType = { key: "value" }): Type seven_abc(argument: Int): Type } @@ -70,11 +68,11 @@ union AnnotatedUnion @onUnion = A | B union AnnotatedUnionTwo @onUnion = A | B -union UndefinedUnion = +union UndefinedUnion = extend union Feed = Photo | Video -extend union Feed @onUnion = +extend union Feed @onUnion = scalar CustomScalar @@ -127,7 +125,10 @@ extend input InputType @onInputObject { directive @skip(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT -directive @skip2(if: Boolean!) repeatable on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT +directive @skip2(if: Boolean!) repeatable on + | FIELD + | FRAGMENT_SPREAD + | INLINE_FRAGMENT directive @include(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT 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 05e617fa59c..41ef3ccf4ed 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,4 +13,6 @@ type Foo { "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") + @specifiedBy( + url: "https://docs.mongodb.com/manual/reference/bson-types/#objectid" + ) 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 0e7c36db0bd..4d3eba27812 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 @@ -58,4 +58,10 @@ input TypeWithListFilterInput { 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 +) on + | SCALAR + | OBJECT + | FIELD_DEFINITION + | ARGUMENT_DEFINITION + | ENUM + | INPUT_FIELD_DEFINITION diff --git a/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonLineStringSerializerTests.FormatValue_Should_Pass_When_Value.graphql b/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonLineStringSerializerTests.FormatValue_Should_Pass_When_Value.graphql index 0003a181198..30dd409de06 100644 --- a/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonLineStringSerializerTests.FormatValue_Should_Pass_When_Value.graphql +++ b/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonLineStringSerializerTests.FormatValue_Should_Pass_When_Value.graphql @@ -1,18 +1 @@ -{ - type: LineString, - coordinates: [ - [ - 30, - 10 - ], - [ - 10, - 30 - ], - [ - 40, - 40 - ] - ], - crs: 0 -} +{ type: LineString, coordinates: [[30, 10], [10, 30], [40, 40]], crs: 0 } diff --git a/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonMultiLineStringSerializerTests.FormatValue_Should_Pass_When_Value.graphql b/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonMultiLineStringSerializerTests.FormatValue_Should_Pass_When_Value.graphql index 93d1c3c2a33..6daae704d46 100644 --- a/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonMultiLineStringSerializerTests.FormatValue_Should_Pass_When_Value.graphql +++ b/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonMultiLineStringSerializerTests.FormatValue_Should_Pass_When_Value.graphql @@ -1,38 +1,8 @@ { - type: MultiLineString, + type: MultiLineString coordinates: [ - [ - [ - 10, - 10 - ], - [ - 20, - 20 - ], - [ - 10, - 40 - ] - ], - [ - [ - 40, - 40 - ], - [ - 30, - 30 - ], - [ - 40, - 20 - ], - [ - 30, - 10 - ] - ] - ], + [[10, 10], [20, 20], [10, 40]] + [[40, 40], [30, 30], [40, 20], [30, 10]] + ] crs: 0 } diff --git a/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonMultiPointSerializerTests.FormatValue_Should_Pass_When_Value.graphql b/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonMultiPointSerializerTests.FormatValue_Should_Pass_When_Value.graphql index 94f1f357e52..70c4867e497 100644 --- a/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonMultiPointSerializerTests.FormatValue_Should_Pass_When_Value.graphql +++ b/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonMultiPointSerializerTests.FormatValue_Should_Pass_When_Value.graphql @@ -1,22 +1,5 @@ { - type: MultiPoint, - coordinates: [ - [ - 10, - 40 - ], - [ - 40, - 30 - ], - [ - 20, - 20 - ], - [ - 30, - 10 - ] - ], + type: MultiPoint + coordinates: [[10, 40], [40, 30], [20, 20], [30, 10]] crs: 0 } diff --git a/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonMultiPolygonSerializerTests.FormatValue_Should_Pass_When_Value.graphql b/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonMultiPolygonSerializerTests.FormatValue_Should_Pass_When_Value.graphql index 5de8868372b..85bbd0d86f6 100644 --- a/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonMultiPolygonSerializerTests.FormatValue_Should_Pass_When_Value.graphql +++ b/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonMultiPolygonSerializerTests.FormatValue_Should_Pass_When_Value.graphql @@ -1,50 +1,8 @@ { - type: MultiPolygon, + type: MultiPolygon coordinates: [ - [ - [ - [ - 30, - 20 - ], - [ - 45, - 40 - ], - [ - 10, - 40 - ], - [ - 30, - 20 - ] - ] - ], - [ - [ - [ - 15, - 5 - ], - [ - 40, - 10 - ], - [ - 10, - 20 - ], - [ - 5, - 15 - ], - [ - 15, - 5 - ] - ] - ] - ], + [[[30, 20], [45, 40], [10, 40], [30, 20]]] + [[[15, 5], [40, 10], [10, 20], [5, 15], [15, 5]]] + ] crs: 0 } diff --git a/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonPointSerializerTests.FormatValue_Should_Pass_When_Value.graphql b/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonPointSerializerTests.FormatValue_Should_Pass_When_Value.graphql index bc6573ef262..c3914efd2a1 100644 --- a/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonPointSerializerTests.FormatValue_Should_Pass_When_Value.graphql +++ b/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonPointSerializerTests.FormatValue_Should_Pass_When_Value.graphql @@ -1,8 +1 @@ -{ - type: Point, - coordinates: [ - 30, - 10 - ], - crs: 0 -} +{ type: Point, coordinates: [30, 10], crs: 0 } diff --git a/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonPolygonSerializerTests.FormatValue_Should_Pass_When_Value.snap b/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonPolygonSerializerTests.FormatValue_Should_Pass_When_Value.snap index c883404c651..e601c5d08a6 100644 --- a/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonPolygonSerializerTests.FormatValue_Should_Pass_When_Value.snap +++ b/src/HotChocolate/Spatial/test/Types.Tests/__snapshots__/GeoJsonPolygonSerializerTests.FormatValue_Should_Pass_When_Value.snap @@ -1,28 +1,5 @@ { - type: Polygon, - coordinates: [ - [ - [ - 30, - 10 - ], - [ - 40, - 40 - ], - [ - 20, - 40 - ], - [ - 10, - 20 - ], - [ - 30, - 10 - ] - ] - ], + type: Polygon + coordinates: [[[30, 10], [40, 40], [20, 40], [10, 20], [30, 10]]] crs: 0 } 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 d6181ce2f9a..6d6e5d27d10 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 @@ -156,7 +156,13 @@ scalar Long 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 +) 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( 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 3ac459121af..2d01516c8bd 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 @@ -230,7 +230,15 @@ type Starship { } "Directs the executor to skip this field or fragment when the `if` argument is true." -directive @skip("Skipped when true." if: Boolean!) on FIELD | FIELD_DEFINITION | INLINE_FRAGMENT | FRAGMENT_SPREAD +directive @skip("Skipped when true." if: Boolean!) on + | FIELD + | FIELD_DEFINITION + | INLINE_FRAGMENT + | FRAGMENT_SPREAD "Directs the executor to include this field or fragment only when the `if` argument is true." -directive @include("Included when true." if: Boolean!) on FIELD | FIELD_DEFINITION | INLINE_FRAGMENT | FRAGMENT_SPREAD +directive @include("Included when true." if: Boolean!) on + | FIELD + | FIELD_DEFINITION + | INLINE_FRAGMENT + | FRAGMENT_SPREAD diff --git a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Default_Query.snap b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Default_Query.snap index bab1d210a34..e4cc01ff61a 100644 --- a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Default_Query.snap +++ b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Default_Query.snap @@ -7,13 +7,13 @@ query IntrospectionQuery { name } types { - ... FullType + ...FullType } directives { name description args { - ... InputValue + ...InputValue } onOperation onFragment @@ -30,19 +30,19 @@ fragment FullType on __Type { name description args { - ... InputValue + ...InputValue } type { - ... TypeRef + ...TypeRef } isDeprecated deprecationReason } inputFields { - ... InputValue + ...InputValue } interfaces { - ... TypeRef + ...TypeRef } enumValues(includeDeprecated: true) { name @@ -51,7 +51,7 @@ fragment FullType on __Type { deprecationReason } possibleTypes { - ... TypeRef + ...TypeRef } } @@ -59,7 +59,7 @@ fragment InputValue on __InputValue { name description type { - ... TypeRef + ...TypeRef } defaultValue } diff --git a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_ArgumentDeprecation.snap b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_ArgumentDeprecation.snap index 51a7d8c6de6..b20d4d431e5 100644 --- a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_ArgumentDeprecation.snap +++ b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_ArgumentDeprecation.snap @@ -7,13 +7,13 @@ query IntrospectionQuery { name } types { - ... FullType + ...FullType } directives { name description args { - ... InputValue + ...InputValue } onOperation onFragment @@ -30,23 +30,23 @@ fragment FullType on __Type { name description args(includeDeprecated: true) { - ... InputValue + ...InputValue isDeprecated deprecationReason } type { - ... TypeRef + ...TypeRef } isDeprecated deprecationReason } inputFields(includeDeprecated: true) { - ... InputValue + ...InputValue isDeprecated deprecationReason } interfaces { - ... TypeRef + ...TypeRef } enumValues(includeDeprecated: true) { name @@ -55,7 +55,7 @@ fragment FullType on __Type { deprecationReason } possibleTypes { - ... TypeRef + ...TypeRef } } @@ -63,7 +63,7 @@ fragment InputValue on __InputValue { name description type { - ... TypeRef + ...TypeRef } defaultValue } diff --git a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_DirectiveLocations.snap b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_DirectiveLocations.snap index 8e6bced1de5..bef54815856 100644 --- a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_DirectiveLocations.snap +++ b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_DirectiveLocations.snap @@ -7,13 +7,13 @@ query IntrospectionQuery { name } types { - ... FullType + ...FullType } directives { name description args { - ... InputValue + ...InputValue } locations } @@ -28,19 +28,19 @@ fragment FullType on __Type { name description args { - ... InputValue + ...InputValue } type { - ... TypeRef + ...TypeRef } isDeprecated deprecationReason } inputFields { - ... InputValue + ...InputValue } interfaces { - ... TypeRef + ...TypeRef } enumValues(includeDeprecated: true) { name @@ -49,7 +49,7 @@ fragment FullType on __Type { deprecationReason } possibleTypes { - ... TypeRef + ...TypeRef } } @@ -57,7 +57,7 @@ fragment InputValue on __InputValue { name description type { - ... TypeRef + ...TypeRef } defaultValue } diff --git a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_RepeatableDirectives.snap b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_RepeatableDirectives.snap index 6a2057f2595..7ba05e405ca 100644 --- a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_RepeatableDirectives.snap +++ b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_RepeatableDirectives.snap @@ -7,13 +7,13 @@ query IntrospectionQuery { name } types { - ... FullType + ...FullType } directives { name description args { - ... InputValue + ...InputValue } onOperation onFragment @@ -31,19 +31,19 @@ fragment FullType on __Type { name description args { - ... InputValue + ...InputValue } type { - ... TypeRef + ...TypeRef } isDeprecated deprecationReason } inputFields { - ... InputValue + ...InputValue } interfaces { - ... TypeRef + ...TypeRef } enumValues(includeDeprecated: true) { name @@ -52,7 +52,7 @@ fragment FullType on __Type { deprecationReason } possibleTypes { - ... TypeRef + ...TypeRef } } @@ -60,7 +60,7 @@ fragment InputValue on __InputValue { name description type { - ... TypeRef + ...TypeRef } defaultValue } diff --git a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_SchemaDescription.snap b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_SchemaDescription.snap index 2eb54125f12..c6ad56b3729 100644 --- a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_SchemaDescription.snap +++ b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_SchemaDescription.snap @@ -8,13 +8,13 @@ query IntrospectionQuery { name } types { - ... FullType + ...FullType } directives { name description args { - ... InputValue + ...InputValue } onOperation onFragment @@ -31,19 +31,19 @@ fragment FullType on __Type { name description args { - ... InputValue + ...InputValue } type { - ... TypeRef + ...TypeRef } isDeprecated deprecationReason } inputFields { - ... InputValue + ...InputValue } interfaces { - ... TypeRef + ...TypeRef } enumValues(includeDeprecated: true) { name @@ -52,7 +52,7 @@ fragment FullType on __Type { deprecationReason } possibleTypes { - ... TypeRef + ...TypeRef } } @@ -60,7 +60,7 @@ fragment InputValue on __InputValue { name description type { - ... TypeRef + ...TypeRef } defaultValue } diff --git a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_SubscriptionSupport.snap b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_SubscriptionSupport.snap index f7476d483c4..c3183e0820c 100644 --- a/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_SubscriptionSupport.snap +++ b/src/HotChocolate/Utilities/test/Utilities.Introspection.Tests/__snapshots__/IntrospectionQueryBuilderTests.Create_Query_With_SubscriptionSupport.snap @@ -10,13 +10,13 @@ query IntrospectionQuery { name } types { - ... FullType + ...FullType } directives { name description args { - ... InputValue + ...InputValue } onOperation onFragment @@ -33,19 +33,19 @@ fragment FullType on __Type { name description args { - ... InputValue + ...InputValue } type { - ... TypeRef + ...TypeRef } isDeprecated deprecationReason } inputFields { - ... InputValue + ...InputValue } interfaces { - ... TypeRef + ...TypeRef } enumValues(includeDeprecated: true) { name @@ -54,7 +54,7 @@ fragment FullType on __Type { deprecationReason } possibleTypes { - ... TypeRef + ...TypeRef } } @@ -62,7 +62,7 @@ fragment InputValue on __InputValue { name description type { - ... TypeRef + ...TypeRef } defaultValue } 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 74e70d927b7..23e0cd71bf5 100644 --- a/src/Nitro/CommandLine/test/CommandLine.Tests/Commands/Fusion/FusionPublishCommandTests.cs +++ b/src/Nitro/CommandLine/test/CommandLine.Tests/Commands/Fusion/FusionPublishCommandTests.cs @@ -4434,7 +4434,13 @@ directive @fusion__cost( schema: fusion__Schema! "The weight defined in the source schema." weight: String! - ) repeatable on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION + ) 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( @@ -4463,7 +4469,17 @@ directive @fusion__implements( ) 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 + 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( @@ -4672,7 +4688,13 @@ directive @fusion__cost( schema: fusion__Schema! "The weight defined in the source schema." weight: String! - ) repeatable on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION + ) 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( @@ -4701,7 +4723,17 @@ directive @fusion__implements( ) 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 + 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( 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 dca1de0be63..f740032fcdf 100644 --- a/src/Nitro/CommandLine/test/CommandLine.Tests/Commands/Fusion/FusionValidateCommandTests.cs +++ b/src/Nitro/CommandLine/test/CommandLine.Tests/Commands/Fusion/FusionValidateCommandTests.cs @@ -1125,7 +1125,13 @@ directive @fusion__cost( schema: fusion__Schema! "The weight defined in the source schema." weight: String! - ) repeatable on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION + ) 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( @@ -1154,7 +1160,17 @@ directive @fusion__implements( ) 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 + 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( @@ -1288,7 +1304,13 @@ directive @fusion__cost( schema: fusion__Schema! "The weight defined in the source schema." weight: String! - ) repeatable on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION + ) 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( @@ -1317,7 +1339,17 @@ directive @fusion__implements( ) 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 + 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( diff --git a/src/Nitro/CommandLine/test/CommandLine.Tests/__resources__/invalid-example-1-result/composite-schema.graphqls b/src/Nitro/CommandLine/test/CommandLine.Tests/__resources__/invalid-example-1-result/composite-schema.graphqls index f0f27392a88..37b19248441 100644 --- a/src/Nitro/CommandLine/test/CommandLine.Tests/__resources__/invalid-example-1-result/composite-schema.graphqls +++ b/src/Nitro/CommandLine/test/CommandLine.Tests/__resources__/invalid-example-1-result/composite-schema.graphqls @@ -48,7 +48,13 @@ 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 @@ -60,7 +66,17 @@ directive @fusion__field("Indicates that this field is only partially provided a 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 +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 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 17f2959738e..4ed507dbe9c 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 @@ -31,7 +31,13 @@ directive @fusion__cost( schema: fusion__Schema! "The weight defined in the source schema." weight: String! -) repeatable on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +) 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( @@ -60,7 +66,17 @@ directive @fusion__implements( ) 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 +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( 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 17f2959738e..4ed507dbe9c 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 @@ -31,7 +31,13 @@ directive @fusion__cost( schema: fusion__Schema! "The weight defined in the source schema." weight: String! -) repeatable on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | ENUM | INPUT_FIELD_DEFINITION +) 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( @@ -60,7 +66,17 @@ directive @fusion__implements( ) 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 +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( diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsDeferInListTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsDeferInListTest.Client.cs index 4dcf696d7b1..96f61381aa0 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsDeferInListTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsDeferInListTest.Client.cs @@ -602,7 +602,7 @@ public partial interface IGetHero_Hero_Friends_Nodes_Human : IGetHero_Hero_Frien /// __typename /// nodes { /// __typename - /// ... CharacterName @defer(label: "CharacterName") + /// ...CharacterName @defer(label: "CharacterName") /// ... on Droid { /// id /// } @@ -635,8 +635,8 @@ private GetHeroQueryDocument() public static GetHeroQueryDocument Instance { get; } = new GetHeroQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query GetHero { hero(episode: NEW_HOPE) { __typename friends { __typename nodes { __typename ... CharacterName @defer(label: \"CharacterName\") ... on Droid { id } ... on Human { id } } } ... on Droid { id } ... on Human { id } } } fragment CharacterName on Character { _isCharacterNameFulfilled: __typename name }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "ba8d6a590e0613253d74fddd5868d5128efd3185"); + public global::System.ReadOnlySpan Body => "query GetHero { hero(episode: NEW_HOPE) { __typename friends { __typename nodes { __typename ...CharacterName @defer(label: \"CharacterName\") ... on Droid { id } ... on Human { id } } } ... on Droid { id } ... on Human { id } } } fragment CharacterName on Character { _isCharacterNameFulfilled: __typename name }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "d973d4cde90cbfaceb7cc80bbaea6202fa83ab2c"); public override global::System.String ToString() { @@ -659,7 +659,7 @@ private GetHeroQueryDocument() /// __typename /// nodes { /// __typename - /// ... CharacterName @defer(label: "CharacterName") + /// ...CharacterName @defer(label: "CharacterName") /// ... on Droid { /// id /// } @@ -760,7 +760,7 @@ private GetHeroQuery(global::StrawberryShake.IOperationExecutor /// __typename /// nodes { /// __typename - /// ... CharacterName @defer(label: "CharacterName") + /// ...CharacterName @defer(label: "CharacterName") /// ... on Droid { /// id /// } diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsDeferredTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsDeferredTest.Client.cs index c75f9a55ce1..7d3abc4f7c5 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsDeferredTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsGetFriendsDeferredTest.Client.cs @@ -606,7 +606,7 @@ public partial interface IGetHero_Hero_Friends_Nodes_Human : IGetHero_Hero_Frien /// hero(episode: NEW_HOPE) { /// __typename /// name - /// ... FriendsList @defer(label: "FriendsListLabel") + /// ...FriendsList @defer(label: "FriendsListLabel") /// ... on Droid { /// id /// } @@ -643,8 +643,8 @@ private GetHeroQueryDocument() public static GetHeroQueryDocument Instance { get; } = new GetHeroQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query GetHero { hero(episode: NEW_HOPE) { __typename name ... FriendsList @defer(label: \"FriendsListLabel\") ... on Droid { id } ... on Human { id } } } fragment FriendsList on Character { _isFriendsListFulfilled: __typename friends { __typename nodes { __typename name ... on Droid { id } ... on Human { id } } } }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "14694ab081258c7d8f3467f90c31653193237401"); + public global::System.ReadOnlySpan Body => "query GetHero { hero(episode: NEW_HOPE) { __typename name ...FriendsList @defer(label: \"FriendsListLabel\") ... on Droid { id } ... on Human { id } } } fragment FriendsList on Character { _isFriendsListFulfilled: __typename friends { __typename nodes { __typename name ... on Droid { id } ... on Human { id } } } }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "db5e1e606145b94143ec39702d2a9f103b2798b7"); public override global::System.String ToString() { @@ -664,7 +664,7 @@ private GetHeroQueryDocument() /// hero(episode: NEW_HOPE) { /// __typename /// name - /// ... FriendsList @defer(label: "FriendsListLabel") + /// ...FriendsList @defer(label: "FriendsListLabel") /// ... on Droid { /// id /// } @@ -766,7 +766,7 @@ private GetHeroQuery(global::StrawberryShake.IOperationExecutor /// hero(episode: NEW_HOPE) { /// __typename /// name - /// ... FriendsList @defer(label: "FriendsListLabel") + /// ...FriendsList @defer(label: "FriendsListLabel") /// ... on Droid { /// id /// } 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 e74eb947e77..04fbd020dbb 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 @@ -665,7 +665,7 @@ public partial interface IGetHeroWithFragmentIncludeAndSkipDirective_Hero_Friend /// ) { /// hero(episode: NEW_HOPE) { /// __typename - /// ... HeroFragment + /// ...HeroFragment /// ... on Droid { /// id /// } @@ -679,18 +679,18 @@ public partial interface IGetHeroWithFragmentIncludeAndSkipDirective_Hero_Friend /// id /// friends { /// __typename - /// ... FriendsFragment + /// ...FriendsFragment /// } /// } /// /// fragment FriendsFragment on FriendsConnection { /// includedPageInfo: pageInfo @include(if: $includePageInfo) { /// __typename - /// ... PageInfoFragment + /// ...PageInfoFragment /// } /// skippedPageInfo: pageInfo @skip(if: $skipPageInfo) { /// __typename - /// ... PageInfoFragment + /// ...PageInfoFragment /// } /// } /// @@ -708,8 +708,8 @@ private GetHeroWithFragmentIncludeAndSkipDirectiveQueryDocument() public static GetHeroWithFragmentIncludeAndSkipDirectiveQueryDocument Instance { get; } = new GetHeroWithFragmentIncludeAndSkipDirectiveQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query GetHeroWithFragmentIncludeAndSkipDirective($includePageInfo: Boolean = false, $skipPageInfo: Boolean = true) { hero(episode: NEW_HOPE) { __typename ... HeroFragment ... on Droid { id } ... on Human { id } } } fragment HeroFragment on Character { id friends { __typename ... FriendsFragment } } fragment FriendsFragment on FriendsConnection { includedPageInfo: pageInfo @include(if: $includePageInfo) { __typename ... PageInfoFragment } skippedPageInfo: pageInfo @skip(if: $skipPageInfo) { __typename ... PageInfoFragment } } fragment PageInfoFragment on PageInfo { hasNextPage }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "87f3c93b0135cfd1f7e0467b57ae1a6ef7d4e828"); + public global::System.ReadOnlySpan Body => "query GetHeroWithFragmentIncludeAndSkipDirective($includePageInfo: Boolean = false, $skipPageInfo: Boolean = true) { hero(episode: NEW_HOPE) { __typename ...HeroFragment ... on Droid { id } ... on Human { id } } } fragment HeroFragment on Character { id friends { __typename ...FriendsFragment } } fragment FriendsFragment on FriendsConnection { includedPageInfo: pageInfo @include(if: $includePageInfo) { __typename ...PageInfoFragment } skippedPageInfo: pageInfo @skip(if: $skipPageInfo) { __typename ...PageInfoFragment } } fragment PageInfoFragment on PageInfo { hasNextPage }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "a4302a9b8faf7b6596545818cc8fb8b10ce44246"); public override global::System.String ToString() { @@ -731,7 +731,7 @@ private GetHeroWithFragmentIncludeAndSkipDirectiveQueryDocument() /// ) { /// hero(episode: NEW_HOPE) { /// __typename - /// ... HeroFragment + /// ...HeroFragment /// ... on Droid { /// id /// } @@ -745,18 +745,18 @@ private GetHeroWithFragmentIncludeAndSkipDirectiveQueryDocument() /// id /// friends { /// __typename - /// ... FriendsFragment + /// ...FriendsFragment /// } /// } /// /// fragment FriendsFragment on FriendsConnection { /// includedPageInfo: pageInfo @include(if: $includePageInfo) { /// __typename - /// ... PageInfoFragment + /// ...PageInfoFragment /// } /// skippedPageInfo: pageInfo @skip(if: $skipPageInfo) { /// __typename - /// ... PageInfoFragment + /// ...PageInfoFragment /// } /// } /// @@ -871,7 +871,7 @@ private GetHeroWithFragmentIncludeAndSkipDirectiveQuery(global::StrawberryShake. /// ) { /// hero(episode: NEW_HOPE) { /// __typename - /// ... HeroFragment + /// ...HeroFragment /// ... on Droid { /// id /// } @@ -885,18 +885,18 @@ private GetHeroWithFragmentIncludeAndSkipDirectiveQuery(global::StrawberryShake. /// id /// friends { /// __typename - /// ... FriendsFragment + /// ...FriendsFragment /// } /// } /// /// fragment FriendsFragment on FriendsConnection { /// includedPageInfo: pageInfo @include(if: $includePageInfo) { /// __typename - /// ... PageInfoFragment + /// ...PageInfoFragment /// } /// skippedPageInfo: pageInfo @skip(if: $skipPageInfo) { /// __typename - /// ... PageInfoFragment + /// ...PageInfoFragment /// } /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsIntrospectionTest.Client.cs b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsIntrospectionTest.Client.cs index 4a3c1a0d2cd..337b18a5122 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsIntrospectionTest.Client.cs +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/Integration/StarWarsIntrospectionTest.Client.cs @@ -2812,7 +2812,7 @@ public __TypeKind Parse(global::System.String serializedValue) /// } /// types { /// __typename - /// ... FullType + /// ...FullType /// } /// directives { /// __typename @@ -2820,7 +2820,7 @@ public __TypeKind Parse(global::System.String serializedValue) /// description /// args { /// __typename - /// ... InputValue + /// ...InputValue /// } /// onOperation /// onFragment @@ -2839,22 +2839,22 @@ public __TypeKind Parse(global::System.String serializedValue) /// description /// args { /// __typename - /// ... InputValue + /// ...InputValue /// } /// type { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// isDeprecated /// deprecationReason /// } /// inputFields { /// __typename - /// ... InputValue + /// ...InputValue /// } /// interfaces { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// enumValues(includeDeprecated: true) { /// __typename @@ -2865,7 +2865,7 @@ public __TypeKind Parse(global::System.String serializedValue) /// } /// possibleTypes { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// } /// @@ -2874,7 +2874,7 @@ public __TypeKind Parse(global::System.String serializedValue) /// description /// type { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// defaultValue /// } @@ -2909,8 +2909,8 @@ private IntrospectionQueryQueryDocument() public static IntrospectionQueryQueryDocument Instance { get; } = new IntrospectionQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query IntrospectionQuery { __schema { __typename queryType { __typename name } mutationType { __typename name } subscriptionType { __typename name } types { __typename ... FullType } directives { __typename name description args { __typename ... InputValue } onOperation onFragment onField } } } fragment FullType on __Type { kind name description fields(includeDeprecated: true) { __typename name description args { __typename ... InputValue } type { __typename ... TypeRef } isDeprecated deprecationReason } inputFields { __typename ... InputValue } interfaces { __typename ... TypeRef } enumValues(includeDeprecated: true) { __typename name description isDeprecated deprecationReason } possibleTypes { __typename ... TypeRef } } fragment InputValue on __InputValue { name description type { __typename ... TypeRef } defaultValue } fragment TypeRef on __Type { kind name ofType { __typename kind name ofType { __typename kind name ofType { __typename kind name } } } }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "5902e9f9fd92bc2e9785f0821db6ff925e660fde"); + public global::System.ReadOnlySpan Body => "query IntrospectionQuery { __schema { __typename queryType { __typename name } mutationType { __typename name } subscriptionType { __typename name } types { __typename ...FullType } directives { __typename name description args { __typename ...InputValue } onOperation onFragment onField } } } fragment FullType on __Type { kind name description fields(includeDeprecated: true) { __typename name description args { __typename ...InputValue } type { __typename ...TypeRef } isDeprecated deprecationReason } inputFields { __typename ...InputValue } interfaces { __typename ...TypeRef } enumValues(includeDeprecated: true) { __typename name description isDeprecated deprecationReason } possibleTypes { __typename ...TypeRef } } fragment InputValue on __InputValue { name description type { __typename ...TypeRef } defaultValue } fragment TypeRef on __Type { kind name ofType { __typename kind name ofType { __typename kind name ofType { __typename kind name } } } }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "adc16871258b9bf9076f70b8b374b286c676f5c6"); public override global::System.String ToString() { @@ -2943,7 +2943,7 @@ private IntrospectionQueryQueryDocument() /// } /// types { /// __typename - /// ... FullType + /// ...FullType /// } /// directives { /// __typename @@ -2951,7 +2951,7 @@ private IntrospectionQueryQueryDocument() /// description /// args { /// __typename - /// ... InputValue + /// ...InputValue /// } /// onOperation /// onFragment @@ -2970,22 +2970,22 @@ private IntrospectionQueryQueryDocument() /// description /// args { /// __typename - /// ... InputValue + /// ...InputValue /// } /// type { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// isDeprecated /// deprecationReason /// } /// inputFields { /// __typename - /// ... InputValue + /// ...InputValue /// } /// interfaces { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// enumValues(includeDeprecated: true) { /// __typename @@ -2996,7 +2996,7 @@ private IntrospectionQueryQueryDocument() /// } /// possibleTypes { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// } /// @@ -3005,7 +3005,7 @@ private IntrospectionQueryQueryDocument() /// description /// type { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// defaultValue /// } @@ -3118,7 +3118,7 @@ private IntrospectionQueryQuery(global::StrawberryShake.IOperationExecutor global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query GetPeople { people(order_by: { name: ASC }) { __typename nodes { __typename ... Person messages { __typename nodes { __typename ... Message ... on Message { id } } } ... on Person { id } } } } fragment Person on Person { name } fragment Message on Message { sender { __typename ... Person ... on Person { id } } text }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "0967ca09947e3a18370454229ece650b8ba8e2ef"); + public global::System.ReadOnlySpan Body => "query GetPeople { people(order_by: { name: ASC }) { __typename nodes { __typename ...Person messages { __typename nodes { __typename ...Message ... on Message { id } } } ... on Person { id } } } } fragment Person on Person { name } fragment Message on Message { sender { __typename ...Person ... on Person { id } } text }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "3aa724f0a7c7885275c950e8421338967a38e2a3"); public override global::System.String ToString() { @@ -1035,12 +1035,12 @@ namespace Foo.Bar /// __typename /// nodes { /// __typename - /// ... Person + /// ...Person /// messages { /// __typename /// nodes { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -1060,7 +1060,7 @@ namespace Foo.Bar /// fragment Message on Message { /// sender { /// __typename - /// ... Person + /// ...Person /// ... on Person { /// id /// } @@ -1144,12 +1144,12 @@ namespace Foo.Bar /// __typename /// nodes { /// __typename - /// ... Person + /// ...Person /// messages { /// __typename /// nodes { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -1169,7 +1169,7 @@ namespace Foo.Bar /// fragment Message on Message { /// sender { /// __typename - /// ... Person + /// ...Person /// ... on Person { /// id /// } @@ -1197,7 +1197,7 @@ namespace Foo.Bar /// __typename /// message { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -1208,7 +1208,7 @@ namespace Foo.Bar /// fragment Message on Message { /// sender { /// __typename - /// ... Person + /// ...Person /// ... on Person { /// id /// } @@ -1230,8 +1230,8 @@ namespace Foo.Bar public static WriteMessageMutationDocument Instance { get; } = new WriteMessageMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation WriteMessage($text: String!, $address: String!) { sendMessage(input: { text: $text, recipientEmail: $address }) { __typename message { __typename ... Message ... on Message { id } } } } fragment Message on Message { sender { __typename ... Person ... on Person { id } } text } fragment Person on Person { name }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "5b649ed10b73d2f35595b9d5f11fee8759ac4d72"); + public global::System.ReadOnlySpan Body => "mutation WriteMessage($text: String!, $address: String!) { sendMessage(input: { text: $text, recipientEmail: $address }) { __typename message { __typename ...Message ... on Message { id } } } } fragment Message on Message { sender { __typename ...Person ... on Person { id } } text } fragment Person on Person { name }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "4db8324430dd00ff2a44f6b285939d2ccb7ff412"); public override global::System.String ToString() { @@ -1252,7 +1252,7 @@ namespace Foo.Bar /// __typename /// message { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -1263,7 +1263,7 @@ namespace Foo.Bar /// fragment Message on Message { /// sender { /// __typename - /// ... Person + /// ...Person /// ... on Person { /// id /// } @@ -1377,7 +1377,7 @@ namespace Foo.Bar /// __typename /// message { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -1388,7 +1388,7 @@ namespace Foo.Bar /// fragment Message on Message { /// sender { /// __typename - /// ... Person + /// ...Person /// ... on Person { /// id /// } 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 81a4c8d1fd8..1372c8c91fd 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 @@ -970,12 +970,12 @@ namespace Foo.Bar /// __typename /// nodes { /// __typename - /// ... Person + /// ...Person /// messages { /// __typename /// nodes { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -995,7 +995,7 @@ namespace Foo.Bar /// fragment Message on Message { /// sender { /// __typename - /// ... Person + /// ...Person /// ... on Person { /// id /// } @@ -1013,8 +1013,8 @@ namespace Foo.Bar public static GetPeopleQueryDocument Instance { get; } = new GetPeopleQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query GetPeople { people(order_by: { name: ASC }) { __typename nodes { __typename ... Person messages { __typename nodes { __typename ... Message ... on Message { id } } } ... on Person { id } } } } fragment Person on Person { name } fragment Message on Message { sender { __typename ... Person ... on Person { id } } text }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "0967ca09947e3a18370454229ece650b8ba8e2ef"); + public global::System.ReadOnlySpan Body => "query GetPeople { people(order_by: { name: ASC }) { __typename nodes { __typename ...Person messages { __typename nodes { __typename ...Message ... on Message { id } } } ... on Person { id } } } } fragment Person on Person { name } fragment Message on Message { sender { __typename ...Person ... on Person { id } } text }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "3aa724f0a7c7885275c950e8421338967a38e2a3"); public override global::System.String ToString() { @@ -1035,12 +1035,12 @@ namespace Foo.Bar /// __typename /// nodes { /// __typename - /// ... Person + /// ...Person /// messages { /// __typename /// nodes { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -1060,7 +1060,7 @@ namespace Foo.Bar /// fragment Message on Message { /// sender { /// __typename - /// ... Person + /// ...Person /// ... on Person { /// id /// } @@ -1144,12 +1144,12 @@ namespace Foo.Bar /// __typename /// nodes { /// __typename - /// ... Person + /// ...Person /// messages { /// __typename /// nodes { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -1169,7 +1169,7 @@ namespace Foo.Bar /// fragment Message on Message { /// sender { /// __typename - /// ... Person + /// ...Person /// ... on Person { /// id /// } @@ -1197,7 +1197,7 @@ namespace Foo.Bar /// __typename /// message { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -1208,7 +1208,7 @@ namespace Foo.Bar /// fragment Message on Message { /// sender { /// __typename - /// ... Person + /// ...Person /// ... on Person { /// id /// } @@ -1230,8 +1230,8 @@ namespace Foo.Bar public static WriteMessageMutationDocument Instance { get; } = new WriteMessageMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation WriteMessage($text: String!, $address: String!) { sendMessage(input: { text: $text, recipientEmail: $address }) { __typename message { __typename ... Message ... on Message { id } } } } fragment Message on Message { sender { __typename ... Person ... on Person { id } } text } fragment Person on Person { name }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "5b649ed10b73d2f35595b9d5f11fee8759ac4d72"); + public global::System.ReadOnlySpan Body => "mutation WriteMessage($text: String!, $address: String!) { sendMessage(input: { text: $text, recipientEmail: $address }) { __typename message { __typename ...Message ... on Message { id } } } } fragment Message on Message { sender { __typename ...Person ... on Person { id } } text } fragment Person on Person { name }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "4db8324430dd00ff2a44f6b285939d2ccb7ff412"); public override global::System.String ToString() { @@ -1252,7 +1252,7 @@ namespace Foo.Bar /// __typename /// message { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -1263,7 +1263,7 @@ namespace Foo.Bar /// fragment Message on Message { /// sender { /// __typename - /// ... Person + /// ...Person /// ... on Person { /// id /// } @@ -1377,7 +1377,7 @@ namespace Foo.Bar /// __typename /// message { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -1388,7 +1388,7 @@ namespace Foo.Bar /// fragment Message on Message { /// sender { /// __typename - /// ... Person + /// ...Person /// ... on Person { /// id /// } diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Interface_With_Fragment_Definition_Two_Models.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Interface_With_Fragment_Definition_Two_Models.snap index 896a2b3dcbd..e66d64c3b74 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Interface_With_Fragment_Definition_Two_Models.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/NoStoreStarWarsGeneratorTests.Interface_With_Fragment_Definition_Two_Models.snap @@ -550,14 +550,14 @@ namespace Foo.Bar /// query GetHero { /// hero(episode: NEW_HOPE) { /// __typename - /// ... Hero + /// ...Hero /// } /// } /// /// fragment Hero on Character { /// name - /// ... Human - /// ... Droid + /// ...Human + /// ...Droid /// friends { /// __typename /// nodes { @@ -585,8 +585,8 @@ namespace Foo.Bar public static GetHeroQueryDocument Instance { get; } = new GetHeroQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query GetHero { hero(episode: NEW_HOPE) { __typename ... Hero } } fragment Hero on Character { name ... Human ... Droid friends { __typename nodes { __typename name } } } fragment Human on Human { homePlanet } fragment Droid on Droid { primaryFunction }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "7659b8661f962a731bed9124abcb483f2ea17ca7"); + public global::System.ReadOnlySpan Body => "query GetHero { hero(episode: NEW_HOPE) { __typename ...Hero } } fragment Hero on Character { name ...Human ...Droid friends { __typename nodes { __typename name } } } fragment Human on Human { homePlanet } fragment Droid on Droid { primaryFunction }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "3b3b349029ff18f98ae18ab38972732b8ad8102d"); public override global::System.String ToString() { @@ -605,14 +605,14 @@ namespace Foo.Bar /// query GetHero { /// hero(episode: NEW_HOPE) { /// __typename - /// ... Hero + /// ...Hero /// } /// } /// /// fragment Hero on Character { /// name - /// ... Human - /// ... Droid + /// ...Human + /// ...Droid /// friends { /// __typename /// nodes { @@ -704,14 +704,14 @@ namespace Foo.Bar /// query GetHero { /// hero(episode: NEW_HOPE) { /// __typename - /// ... Hero + /// ...Hero /// } /// } /// /// fragment Hero on Character { /// name - /// ... Human - /// ... Droid + /// ...Human + /// ...Droid /// friends { /// __typename /// nodes { 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 77d5015310b..391a47f4b27 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 @@ -2569,7 +2569,7 @@ namespace Foo.Bar /// __typename /// nodes { /// __typename - /// ... Person + /// ...Person /// ... on Person { /// id /// } @@ -2578,7 +2578,7 @@ namespace Foo.Bar /// } /// /// fragment Person on Person { - /// ... Participant + /// ...Participant /// imageUri /// lastSeen /// } @@ -2599,8 +2599,8 @@ namespace Foo.Bar public static GetPeopleQueryDocument Instance { get; } = new GetPeopleQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query GetPeople { people(order_by: { name: ASC }) { __typename nodes { __typename ... Person ... on Person { id } } } } fragment Person on Person { ... Participant imageUri lastSeen } fragment Participant on Person { name email isOnline }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "91253402b90b965c3f43c2d774692ae8366270c6"); + public global::System.ReadOnlySpan Body => "query GetPeople { people(order_by: { name: ASC }) { __typename nodes { __typename ...Person ... on Person { id } } } } fragment Person on Person { ...Participant imageUri lastSeen } fragment Participant on Person { name email isOnline }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "3bad79e1a211abc597d2ac8e7e0d8cf81bdc42e2"); public override global::System.String ToString() { @@ -2621,7 +2621,7 @@ namespace Foo.Bar /// __typename /// nodes { /// __typename - /// ... Person + /// ...Person /// ... on Person { /// id /// } @@ -2630,7 +2630,7 @@ namespace Foo.Bar /// } /// /// fragment Person on Person { - /// ... Participant + /// ...Participant /// imageUri /// lastSeen /// } @@ -2717,7 +2717,7 @@ namespace Foo.Bar /// __typename /// nodes { /// __typename - /// ... Person + /// ...Person /// ... on Person { /// id /// } @@ -2726,7 +2726,7 @@ namespace Foo.Bar /// } /// /// fragment Person on Person { - /// ... Participant + /// ...Participant /// imageUri /// lastSeen /// } @@ -2759,7 +2759,7 @@ namespace Foo.Bar /// __typename /// nodes { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -2777,14 +2777,14 @@ namespace Foo.Bar /// direction /// recipient { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } /// } /// sender { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } @@ -2808,8 +2808,8 @@ namespace Foo.Bar public static GetMessagesQueryDocument Instance { get; } = new GetMessagesQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query GetMessages($email: String!) { personByEmail(email: $email) { __typename messages(order_by: { sent: ASC }) { __typename nodes { __typename ... Message ... on Message { id } } } ... on Person { id } } } fragment Message on Message { id text direction recipient { __typename ... Participant ... on Person { id } } sender { __typename ... Participant ... on Person { id } } sent } fragment Participant on Person { name email isOnline }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "c9975fca1ca78b7c96f298130fccfc181f3d5309"); + public global::System.ReadOnlySpan Body => "query GetMessages($email: String!) { personByEmail(email: $email) { __typename messages(order_by: { sent: ASC }) { __typename nodes { __typename ...Message ... on Message { id } } } ... on Person { id } } } fragment Message on Message { id text direction recipient { __typename ...Participant ... on Person { id } } sender { __typename ...Participant ... on Person { id } } sent } fragment Participant on Person { name email isOnline }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "1cfb356f2eeca5411ee3291e8c5ccb2ad1f0cfc5"); public override global::System.String ToString() { @@ -2832,7 +2832,7 @@ namespace Foo.Bar /// __typename /// nodes { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -2850,14 +2850,14 @@ namespace Foo.Bar /// direction /// recipient { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } /// } /// sender { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } @@ -2964,7 +2964,7 @@ namespace Foo.Bar /// __typename /// nodes { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -2982,14 +2982,14 @@ namespace Foo.Bar /// direction /// recipient { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } /// } /// sender { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } @@ -3023,7 +3023,7 @@ namespace Foo.Bar /// __typename /// message { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -3037,14 +3037,14 @@ namespace Foo.Bar /// direction /// recipient { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } /// } /// sender { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } @@ -3068,8 +3068,8 @@ namespace Foo.Bar public static SendMessageInputMutationDocument Instance { get; } = new SendMessageInputMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation SendMessageInput($input: SendMessageInput!) { sendMessage(input: $input) { __typename message { __typename ... Message ... on Message { id } } } } fragment Message on Message { id text direction recipient { __typename ... Participant ... on Person { id } } sender { __typename ... Participant ... on Person { id } } sent } fragment Participant on Person { name email isOnline }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "abbee600b2246c20ab39b641561c4a0312560356"); + public global::System.ReadOnlySpan Body => "mutation SendMessageInput($input: SendMessageInput!) { sendMessage(input: $input) { __typename message { __typename ...Message ... on Message { id } } } } fragment Message on Message { id text direction recipient { __typename ...Participant ... on Person { id } } sender { __typename ...Participant ... on Person { id } } sent } fragment Participant on Person { name email isOnline }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "8764f55f59c4c3fcf0b5a5be6466f71da35d13e2"); public override global::System.String ToString() { @@ -3090,7 +3090,7 @@ namespace Foo.Bar /// __typename /// message { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -3104,14 +3104,14 @@ namespace Foo.Bar /// direction /// recipient { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } /// } /// sender { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } @@ -3216,7 +3216,7 @@ namespace Foo.Bar /// __typename /// message { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -3230,14 +3230,14 @@ namespace Foo.Bar /// direction /// recipient { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } /// } /// sender { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } @@ -3271,7 +3271,7 @@ namespace Foo.Bar /// __typename /// message { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -3285,14 +3285,14 @@ namespace Foo.Bar /// direction /// recipient { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } /// } /// sender { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } @@ -3316,8 +3316,8 @@ namespace Foo.Bar public static SendMessageMutMutationDocument Instance { get; } = new SendMessageMutMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => "mutation SendMessageMut($email: String!, $text: String!) { sendMessage(input: { recipientEmail: $email, text: $text }) { __typename message { __typename ... Message ... on Message { id } } } } fragment Message on Message { id text direction recipient { __typename ... Participant ... on Person { id } } sender { __typename ... Participant ... on Person { id } } sent } fragment Participant on Person { name email isOnline }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "0a0b8bf5246ce3dca815397d3d9be98e9a35a867"); + public global::System.ReadOnlySpan Body => "mutation SendMessageMut($email: String!, $text: String!) { sendMessage(input: { recipientEmail: $email, text: $text }) { __typename message { __typename ...Message ... on Message { id } } } } fragment Message on Message { id text direction recipient { __typename ...Participant ... on Person { id } } sender { __typename ...Participant ... on Person { id } } sent } fragment Participant on Person { name email isOnline }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "4f3ec3f8deee8ab823582aa52ab85318345413b3"); public override global::System.String ToString() { @@ -3338,7 +3338,7 @@ namespace Foo.Bar /// __typename /// message { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -3352,14 +3352,14 @@ namespace Foo.Bar /// direction /// recipient { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } /// } /// sender { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } @@ -3475,7 +3475,7 @@ namespace Foo.Bar /// __typename /// message { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -3489,14 +3489,14 @@ namespace Foo.Bar /// direction /// recipient { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } /// } /// sender { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } @@ -3528,7 +3528,7 @@ namespace Foo.Bar /// subscription ReadMessages { /// message: onMessageReceived { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -3541,14 +3541,14 @@ namespace Foo.Bar /// direction /// recipient { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } /// } /// sender { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } @@ -3572,8 +3572,8 @@ namespace Foo.Bar public static ReadMessagesSubscriptionDocument Instance { get; } = new ReadMessagesSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; - public global::System.ReadOnlySpan Body => "subscription ReadMessages { message: onMessageReceived { __typename ... Message ... on Message { id } } } fragment Message on Message { id text direction recipient { __typename ... Participant ... on Person { id } } sender { __typename ... Participant ... on Person { id } } sent } fragment Participant on Person { name email isOnline }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "d814e26af4f48099826de75f91993d52b3568a02"); + public global::System.ReadOnlySpan Body => "subscription ReadMessages { message: onMessageReceived { __typename ...Message ... on Message { id } } } fragment Message on Message { id text direction recipient { __typename ...Participant ... on Person { id } } sender { __typename ...Participant ... on Person { id } } sent } fragment Participant on Person { name email isOnline }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "2b78c70ce389f13826963fe418a9ea6fe73820a1"); public override global::System.String ToString() { @@ -3592,7 +3592,7 @@ namespace Foo.Bar /// subscription ReadMessages { /// message: onMessageReceived { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -3605,14 +3605,14 @@ namespace Foo.Bar /// direction /// recipient { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } /// } /// sender { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } @@ -3667,7 +3667,7 @@ namespace Foo.Bar /// subscription ReadMessages { /// message: onMessageReceived { /// __typename - /// ... Message + /// ...Message /// ... on Message { /// id /// } @@ -3680,14 +3680,14 @@ namespace Foo.Bar /// direction /// recipient { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } /// } /// sender { /// __typename - /// ... Participant + /// ...Participant /// ... on Person { /// id /// } diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Nested_Entity.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Nested_Entity.snap index a4eb5a36736..09b0690f390 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Nested_Entity.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ResultTypeGeneratorTests.Nested_Entity.snap @@ -406,7 +406,7 @@ namespace Foo.Bar /// query DecodeVIN { /// decodeVIN { /// __typename - /// ... DecodeVINModel + /// ...DecodeVINModel /// } /// } /// @@ -414,14 +414,14 @@ namespace Foo.Bar /// isValid /// vehicleMake { /// __typename - /// ... VehicleMakeModel + /// ...VehicleMakeModel /// ... on VehicleMake { /// id /// } /// } /// vehicleModel { /// __typename - /// ... VehicleModelModel + /// ...VehicleModelModel /// ... on VehicleModel { /// id /// } @@ -454,8 +454,8 @@ namespace Foo.Bar public static DecodeVINQueryDocument Instance { get; } = new DecodeVINQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query DecodeVIN { decodeVIN { __typename ... DecodeVINModel } } fragment DecodeVINModel on DecodeVIN { isValid vehicleMake { __typename ... VehicleMakeModel ... on VehicleMake { id } } vehicleModel { __typename ... VehicleModelModel ... on VehicleModel { id } } } fragment VehicleMakeModel on VehicleMake { id make makeCode isDisabled } fragment VehicleModelModel on VehicleModel { id model modelCode vehicleMakeId isDisabled modelType }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "3f6909b5b7145f91544b46b59247799ab1582d49"); + public global::System.ReadOnlySpan Body => "query DecodeVIN { decodeVIN { __typename ...DecodeVINModel } } fragment DecodeVINModel on DecodeVIN { isValid vehicleMake { __typename ...VehicleMakeModel ... on VehicleMake { id } } vehicleModel { __typename ...VehicleModelModel ... on VehicleModel { id } } } fragment VehicleMakeModel on VehicleMake { id make makeCode isDisabled } fragment VehicleModelModel on VehicleModel { id model modelCode vehicleMakeId isDisabled modelType }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "faa5d23bf32183b53722ab26825850a06252b3d8"); public override global::System.String ToString() { @@ -474,7 +474,7 @@ namespace Foo.Bar /// query DecodeVIN { /// decodeVIN { /// __typename - /// ... DecodeVINModel + /// ...DecodeVINModel /// } /// } /// @@ -482,14 +482,14 @@ namespace Foo.Bar /// isValid /// vehicleMake { /// __typename - /// ... VehicleMakeModel + /// ...VehicleMakeModel /// ... on VehicleMake { /// id /// } /// } /// vehicleModel { /// __typename - /// ... VehicleModelModel + /// ...VehicleModelModel /// ... on VehicleModel { /// id /// } @@ -586,7 +586,7 @@ namespace Foo.Bar /// query DecodeVIN { /// decodeVIN { /// __typename - /// ... DecodeVINModel + /// ...DecodeVINModel /// } /// } /// @@ -594,14 +594,14 @@ namespace Foo.Bar /// isValid /// vehicleMake { /// __typename - /// ... VehicleMakeModel + /// ...VehicleMakeModel /// ... on VehicleMake { /// id /// } /// } /// vehicleModel { /// __typename - /// ... VehicleModelModel + /// ...VehicleModelModel /// ... on VehicleModel { /// id /// } diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Scalars_Are_Correctly_Inferred.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Scalars_Are_Correctly_Inferred.snap index 5e47971dfc8..1fae3255b50 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Scalars_Are_Correctly_Inferred.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/ScalarGeneratorTests.Scalars_Are_Correctly_Inferred.snap @@ -192,7 +192,7 @@ namespace Foo.Bar /// query GetAll { /// listings { /// __typename - /// ... Offer + /// ...Offer /// } /// } /// @@ -211,8 +211,8 @@ namespace Foo.Bar public static GetAllQueryDocument Instance { get; } = new GetAllQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query GetAll { listings { __typename ... Offer } } fragment Offer on Offer { numberFloat numberInt }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "f1d55f52ab8224f1113e9ad0cb8321f1bafff815"); + public global::System.ReadOnlySpan Body => "query GetAll { listings { __typename ...Offer } } fragment Offer on Offer { numberFloat numberInt }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "252679150c3bc1c0307d65c10b0a5d3232cb1a7e"); public override global::System.String ToString() { @@ -231,7 +231,7 @@ namespace Foo.Bar /// query GetAll { /// listings { /// __typename - /// ... Offer + /// ...Offer /// } /// } /// @@ -314,7 +314,7 @@ namespace Foo.Bar /// query GetAll { /// listings { /// __typename - /// ... Offer + /// ...Offer /// } /// } /// 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 419a0d9a168..c84dbdf79ca 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 @@ -665,7 +665,7 @@ namespace Foo.Bar /// } /// items { /// __typename - /// ... PeopleSearchResult + /// ...PeopleSearchResult /// ... on Person { /// id /// } @@ -709,8 +709,8 @@ namespace Foo.Bar public static PeopleSearchQueryDocument Instance { get; } = new PeopleSearchQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query PeopleSearch($term: String!, $skip: Int, $take: Int, $inactive: Boolean) { people: peopleSearch(term: $term, includeInactive: $inactive, skip: $skip, take: $take) { __typename totalCount pageInfo { __typename hasNextPage hasPreviousPage } items { __typename ... PeopleSearchResult ... on Person { id } } } } fragment PeopleSearchResult on Person { id key displayName isActive department { __typename id name ... on Department { id } } image title manager { __typename id key displayName ... on Person { id } } }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "0aa0e07a3648d30f705916cfe5d398a1c5c4beac"); + public global::System.ReadOnlySpan Body => "query PeopleSearch($term: String!, $skip: Int, $take: Int, $inactive: Boolean) { people: peopleSearch(term: $term, includeInactive: $inactive, skip: $skip, take: $take) { __typename totalCount pageInfo { __typename hasNextPage hasPreviousPage } items { __typename ...PeopleSearchResult ... on Person { id } } } } fragment PeopleSearchResult on Person { id key displayName isActive department { __typename id name ... on Department { id } } image title manager { __typename id key displayName ... on Person { id } } }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "0113bf6b017d5bc8e10ba64bfb4152034388b227"); public override global::System.String ToString() { @@ -742,7 +742,7 @@ namespace Foo.Bar /// } /// items { /// __typename - /// ... PeopleSearchResult + /// ...PeopleSearchResult /// ... on Person { /// id /// } @@ -923,7 +923,7 @@ namespace Foo.Bar /// } /// items { /// __typename - /// ... PeopleSearchResult + /// ...PeopleSearchResult /// ... on Person { /// id /// } 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 bd0e78b2e22..2daded24966 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 @@ -2967,7 +2967,7 @@ namespace Foo.Bar /// __typename /// nodes { /// __typename - /// ... Bwr_TimeSeries + /// ...Bwr_TimeSeries /// ... on bwr_TimeSeries { /// id /// } @@ -2992,7 +2992,7 @@ namespace Foo.Bar /// unit /// validationCriteria { /// __typename - /// ... Bwr_ValidationCriteria + /// ...Bwr_ValidationCriteria /// ... on bwr_ValidationCriteria { /// id /// } @@ -3031,8 +3031,8 @@ namespace Foo.Bar public static GetBwr_TimeSeriesQueryDocument Instance { get; } = new GetBwr_TimeSeriesQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query GetBwr_TimeSeries($where: bwr_TimeSeriesFilterInput, $readDataInput: ReadDataInput!) { bwr_TimeSeries(where: $where) { __typename nodes { __typename ... Bwr_TimeSeries ... on bwr_TimeSeries { id } } } } fragment Bwr_TimeSeries on bwr_TimeSeries { inventoryId: _inventoryItemId area source type name category specification commodity resolution { __typename timeUnit factor } unit validationCriteria { __typename ... Bwr_ValidationCriteria ... on bwr_ValidationCriteria { id } } importSpecification { __typename fromPeriod toPeriod ... on bwr_ImportSpecification { id } } _dataPoints(input: $readDataInput) { __typename timestamp value flag } } fragment Bwr_ValidationCriteria on bwr_ValidationCriteria { _inventoryItemId name completeness lowerBound upperBound }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "fd97876c1fe57bcb23d5c9cf665e79aff6ded9e3"); + public global::System.ReadOnlySpan Body => "query GetBwr_TimeSeries($where: bwr_TimeSeriesFilterInput, $readDataInput: ReadDataInput!) { bwr_TimeSeries(where: $where) { __typename nodes { __typename ...Bwr_TimeSeries ... on bwr_TimeSeries { id } } } } fragment Bwr_TimeSeries on bwr_TimeSeries { inventoryId: _inventoryItemId area source type name category specification commodity resolution { __typename timeUnit factor } unit validationCriteria { __typename ...Bwr_ValidationCriteria ... on bwr_ValidationCriteria { id } } importSpecification { __typename fromPeriod toPeriod ... on bwr_ImportSpecification { id } } _dataPoints(input: $readDataInput) { __typename timestamp value flag } } fragment Bwr_ValidationCriteria on bwr_ValidationCriteria { _inventoryItemId name completeness lowerBound upperBound }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "e20edf4d7cf928682ed3bc9f2a3ac8467c6e5e45"); public override global::System.String ToString() { @@ -3056,7 +3056,7 @@ namespace Foo.Bar /// __typename /// nodes { /// __typename - /// ... Bwr_TimeSeries + /// ...Bwr_TimeSeries /// ... on bwr_TimeSeries { /// id /// } @@ -3081,7 +3081,7 @@ namespace Foo.Bar /// unit /// validationCriteria { /// __typename - /// ... Bwr_ValidationCriteria + /// ...Bwr_ValidationCriteria /// ... on bwr_ValidationCriteria { /// id /// } @@ -3220,7 +3220,7 @@ namespace Foo.Bar /// __typename /// nodes { /// __typename - /// ... Bwr_TimeSeries + /// ...Bwr_TimeSeries /// ... on bwr_TimeSeries { /// id /// } @@ -3245,7 +3245,7 @@ namespace Foo.Bar /// unit /// validationCriteria { /// __typename - /// ... Bwr_ValidationCriteria + /// ...Bwr_ValidationCriteria /// ... on bwr_ValidationCriteria { /// id /// } diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Full_Extension_File.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Full_Extension_File.snap index 0e6e8cc952a..060a696c5aa 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Full_Extension_File.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Full_Extension_File.snap @@ -188,7 +188,7 @@ namespace Foo.Bar /// query GetListingsCount { /// listings { /// __typename - /// ... ListingsPayload + /// ...ListingsPayload /// } /// } /// @@ -206,8 +206,8 @@ namespace Foo.Bar public static GetListingsCountQueryDocument Instance { get; } = new GetListingsCountQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query GetListingsCount { listings { __typename ... ListingsPayload } } fragment ListingsPayload on ListingsPayload { count }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "c3a13333bd2282e2d7ed111b99934a7610014ba3"); + public global::System.ReadOnlySpan Body => "query GetListingsCount { listings { __typename ...ListingsPayload } } fragment ListingsPayload on ListingsPayload { count }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "8c330f179395c98dec1f0f30613121541ce699b9"); public override global::System.String ToString() { @@ -226,7 +226,7 @@ namespace Foo.Bar /// query GetListingsCount { /// listings { /// __typename - /// ... ListingsPayload + /// ...ListingsPayload /// } /// } /// @@ -308,7 +308,7 @@ namespace Foo.Bar /// query GetListingsCount { /// listings { /// __typename - /// ... ListingsPayload + /// ...ListingsPayload /// } /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.IntrospectionQuery.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.IntrospectionQuery.snap index 241b6af0f91..0b1708a7c4a 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.IntrospectionQuery.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.IntrospectionQuery.snap @@ -2716,7 +2716,7 @@ namespace Foo.Bar /// } /// types { /// __typename - /// ... FullType + /// ...FullType /// } /// directives { /// __typename @@ -2724,7 +2724,7 @@ namespace Foo.Bar /// description /// args { /// __typename - /// ... InputValue + /// ...InputValue /// } /// onOperation /// onFragment @@ -2743,22 +2743,22 @@ namespace Foo.Bar /// description /// args { /// __typename - /// ... InputValue + /// ...InputValue /// } /// type { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// isDeprecated /// deprecationReason /// } /// inputFields { /// __typename - /// ... InputValue + /// ...InputValue /// } /// interfaces { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// enumValues(includeDeprecated: true) { /// __typename @@ -2769,7 +2769,7 @@ namespace Foo.Bar /// } /// possibleTypes { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// } /// @@ -2778,7 +2778,7 @@ namespace Foo.Bar /// description /// type { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// defaultValue /// } @@ -2813,8 +2813,8 @@ namespace Foo.Bar public static IntrospectionQueryQueryDocument Instance { get; } = new IntrospectionQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query IntrospectionQuery { __schema { __typename queryType { __typename name } mutationType { __typename name } subscriptionType { __typename name } types { __typename ... FullType } directives { __typename name description args { __typename ... InputValue } onOperation onFragment onField } } } fragment FullType on __Type { kind name description fields(includeDeprecated: true) { __typename name description args { __typename ... InputValue } type { __typename ... TypeRef } isDeprecated deprecationReason } inputFields { __typename ... InputValue } interfaces { __typename ... TypeRef } enumValues(includeDeprecated: true) { __typename name description isDeprecated deprecationReason } possibleTypes { __typename ... TypeRef } } fragment InputValue on __InputValue { name description type { __typename ... TypeRef } defaultValue } fragment TypeRef on __Type { kind name ofType { __typename kind name ofType { __typename kind name ofType { __typename kind name } } } }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "5902e9f9fd92bc2e9785f0821db6ff925e660fde"); + public global::System.ReadOnlySpan Body => "query IntrospectionQuery { __schema { __typename queryType { __typename name } mutationType { __typename name } subscriptionType { __typename name } types { __typename ...FullType } directives { __typename name description args { __typename ...InputValue } onOperation onFragment onField } } } fragment FullType on __Type { kind name description fields(includeDeprecated: true) { __typename name description args { __typename ...InputValue } type { __typename ...TypeRef } isDeprecated deprecationReason } inputFields { __typename ...InputValue } interfaces { __typename ...TypeRef } enumValues(includeDeprecated: true) { __typename name description isDeprecated deprecationReason } possibleTypes { __typename ...TypeRef } } fragment InputValue on __InputValue { name description type { __typename ...TypeRef } defaultValue } fragment TypeRef on __Type { kind name ofType { __typename kind name ofType { __typename kind name ofType { __typename kind name } } } }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "adc16871258b9bf9076f70b8b374b286c676f5c6"); public override global::System.String ToString() { @@ -2847,7 +2847,7 @@ namespace Foo.Bar /// } /// types { /// __typename - /// ... FullType + /// ...FullType /// } /// directives { /// __typename @@ -2855,7 +2855,7 @@ namespace Foo.Bar /// description /// args { /// __typename - /// ... InputValue + /// ...InputValue /// } /// onOperation /// onFragment @@ -2874,22 +2874,22 @@ namespace Foo.Bar /// description /// args { /// __typename - /// ... InputValue + /// ...InputValue /// } /// type { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// isDeprecated /// deprecationReason /// } /// inputFields { /// __typename - /// ... InputValue + /// ...InputValue /// } /// interfaces { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// enumValues(includeDeprecated: true) { /// __typename @@ -2900,7 +2900,7 @@ namespace Foo.Bar /// } /// possibleTypes { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// } /// @@ -2909,7 +2909,7 @@ namespace Foo.Bar /// description /// type { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// defaultValue /// } @@ -3022,7 +3022,7 @@ namespace Foo.Bar /// } /// types { /// __typename - /// ... FullType + /// ...FullType /// } /// directives { /// __typename @@ -3030,7 +3030,7 @@ namespace Foo.Bar /// description /// args { /// __typename - /// ... InputValue + /// ...InputValue /// } /// onOperation /// onFragment @@ -3049,22 +3049,22 @@ namespace Foo.Bar /// description /// args { /// __typename - /// ... InputValue + /// ...InputValue /// } /// type { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// isDeprecated /// deprecationReason /// } /// inputFields { /// __typename - /// ... InputValue + /// ...InputValue /// } /// interfaces { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// enumValues(includeDeprecated: true) { /// __typename @@ -3075,7 +3075,7 @@ namespace Foo.Bar /// } /// possibleTypes { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// } /// @@ -3084,7 +3084,7 @@ namespace Foo.Bar /// description /// type { /// __typename - /// ... TypeRef + /// ...TypeRef /// } /// defaultValue /// } diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.NonNullLists.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.NonNullLists.snap index 7db973fe5da..63e9a4a0cd6 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.NonNullLists.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.NonNullLists.snap @@ -292,7 +292,7 @@ namespace Foo.Bar /// query GetAll { /// listings { /// __typename - /// ... Offer + /// ...Offer /// } /// } /// @@ -316,8 +316,8 @@ namespace Foo.Bar public static GetAllQueryDocument Instance { get; } = new GetAllQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query GetAll { listings { __typename ... Offer } } fragment Offer on Offer { amenities1 amenities2 amenities3 amenities4 amenities5 amenities6 amenities7 }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "2cb871ada5a49964bc9fe651d0d97bd18903b601"); + public global::System.ReadOnlySpan Body => "query GetAll { listings { __typename ...Offer } } fragment Offer on Offer { amenities1 amenities2 amenities3 amenities4 amenities5 amenities6 amenities7 }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "1845d46ebc6abf2aaecb03d448939aff6f3508f4"); public override global::System.String ToString() { @@ -336,7 +336,7 @@ namespace Foo.Bar /// query GetAll { /// listings { /// __typename - /// ... Offer + /// ...Offer /// } /// } /// @@ -424,7 +424,7 @@ namespace Foo.Bar /// query GetAll { /// listings { /// __typename - /// ... Offer + /// ...Offer /// } /// } /// 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 7a960ef507e..2e2185b1518 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 @@ -2228,23 +2228,24 @@ namespace Foo.Bar /// $skip: Int! /// $take: Int! /// $searchTerm: String! = "" - /// $order: [FeatSortInput!] = [ - /// { - /// name: ASC - /// } - /// ] + /// $order: [FeatSortInput!] = [{ name: ASC }] /// ) { /// feats( /// skip: $skip /// take: $take /// order: $order - /// where: { or: [{ name: { contains: $searchTerm } }, { traits: { some: { name: { contains: $searchTerm } } } }] } + /// where: { + /// or: [ + /// { name: { contains: $searchTerm } } + /// { traits: { some: { name: { contains: $searchTerm } } } } + /// ] + /// } /// ) { /// __typename /// totalCount /// items { /// __typename - /// ... FeatsPage + /// ...FeatsPage /// ... on Feat { /// id /// } @@ -2276,8 +2277,8 @@ namespace Foo.Bar public static GetFeatsPageQueryDocument Instance { get; } = new GetFeatsPageQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query GetFeatsPage($skip: Int!, $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 } } } }] }) { __typename totalCount items { __typename ... FeatsPage ... on Feat { id } } } } fragment FeatsPage on Feat { id name level canBeLearnedMoreThanOnce details { __typename text ... on FeatDetailsBlock { id } } }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "798cb31c64329138d10ad14cc642b97aa805c58f"); + public global::System.ReadOnlySpan Body => "query GetFeatsPage($skip: Int!, $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 } } } }] }) { __typename totalCount items { __typename ...FeatsPage ... on Feat { id } } } } fragment FeatsPage on Feat { id name level canBeLearnedMoreThanOnce details { __typename text ... on FeatDetailsBlock { id } } }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "8d3606bbd8584b83332cde4d78c4e25b47a425ba"); public override global::System.String ToString() { @@ -2297,23 +2298,24 @@ namespace Foo.Bar /// $skip: Int! /// $take: Int! /// $searchTerm: String! = "" - /// $order: [FeatSortInput!] = [ - /// { - /// name: ASC - /// } - /// ] + /// $order: [FeatSortInput!] = [{ name: ASC }] /// ) { /// feats( /// skip: $skip /// take: $take /// order: $order - /// where: { or: [{ name: { contains: $searchTerm } }, { traits: { some: { name: { contains: $searchTerm } } } }] } + /// where: { + /// or: [ + /// { name: { contains: $searchTerm } } + /// { traits: { some: { name: { contains: $searchTerm } } } } + /// ] + /// } /// ) { /// __typename /// totalCount /// items { /// __typename - /// ... FeatsPage + /// ...FeatsPage /// ... on Feat { /// id /// } @@ -2467,23 +2469,24 @@ namespace Foo.Bar /// $skip: Int! /// $take: Int! /// $searchTerm: String! = "" - /// $order: [FeatSortInput!] = [ - /// { - /// name: ASC - /// } - /// ] + /// $order: [FeatSortInput!] = [{ name: ASC }] /// ) { /// feats( /// skip: $skip /// take: $take /// order: $order - /// where: { or: [{ name: { contains: $searchTerm } }, { traits: { some: { name: { contains: $searchTerm } } } }] } + /// where: { + /// or: [ + /// { name: { contains: $searchTerm } } + /// { traits: { some: { name: { contains: $searchTerm } } } } + /// ] + /// } /// ) { /// __typename /// totalCount /// items { /// __typename - /// ... FeatsPage + /// ...FeatsPage /// ... on Feat { /// id /// } @@ -2525,7 +2528,7 @@ namespace Foo.Bar /// __typename /// items { /// __typename - /// ... FeatById + /// ...FeatById /// ... on Feat { /// id /// } @@ -2565,8 +2568,8 @@ namespace Foo.Bar public static GetFeatByIdQueryDocument Instance { get; } = new GetFeatByIdQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query GetFeatById($id: UUID!) { feats(where: { id: { eq: $id } }) { __typename items { __typename ... FeatById ... on Feat { id } } } } fragment FeatById on Feat { id name level special trigger details { __typename text ... on FeatDetailsBlock { id } } actionType { __typename name ... on ActionType { id } } }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "9ebaff788b63cffe97932e6ad7792fa29e168e73"); + public global::System.ReadOnlySpan Body => "query GetFeatById($id: UUID!) { feats(where: { id: { eq: $id } }) { __typename items { __typename ...FeatById ... on Feat { id } } } } fragment FeatById on Feat { id name level special trigger details { __typename text ... on FeatDetailsBlock { id } } actionType { __typename name ... on ActionType { id } } }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "eca34be3ea50e62b5d0c18b1588c4c2ab83c792d"); public override global::System.String ToString() { @@ -2587,7 +2590,7 @@ namespace Foo.Bar /// __typename /// items { /// __typename - /// ... FeatById + /// ...FeatById /// ... on Feat { /// id /// } @@ -2703,7 +2706,7 @@ namespace Foo.Bar /// __typename /// items { /// __typename - /// ... FeatById + /// ...FeatById /// ... on Feat { /// id /// } diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Query_With_Nested_Fragments.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Query_With_Nested_Fragments.snap index 7b2b8074bfb..d30053018a8 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Query_With_Nested_Fragments.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Query_With_Nested_Fragments.snap @@ -349,16 +349,16 @@ namespace Foo.Bar /// query GetAll { /// listings { /// __typename - /// ... ListingsPayload + /// ...ListingsPayload /// } /// } /// /// fragment ListingsPayload on ListingsPayload { /// items { /// __typename - /// ... HasListingId - /// ... Offer - /// ... Auction + /// ...HasListingId + /// ...Offer + /// ...Auction /// } /// } /// @@ -384,8 +384,8 @@ namespace Foo.Bar public static GetAllQueryDocument Instance { get; } = new GetAllQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query GetAll { listings { __typename ... ListingsPayload } } fragment ListingsPayload on ListingsPayload { items { __typename ... HasListingId ... Offer ... Auction } } fragment HasListingId on Listing { listingId } fragment Offer on Offer { price } fragment Auction on Auction { startingPrice }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "c2ce13cb04932b7d4f0a3b22a6566fa34494b068"); + public global::System.ReadOnlySpan Body => "query GetAll { listings { __typename ...ListingsPayload } } fragment ListingsPayload on ListingsPayload { items { __typename ...HasListingId ...Offer ...Auction } } fragment HasListingId on Listing { listingId } fragment Offer on Offer { price } fragment Auction on Auction { startingPrice }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "aed0fe6ddfb3a3140d2d2fe0387b8b983d719fbe"); public override global::System.String ToString() { @@ -404,16 +404,16 @@ namespace Foo.Bar /// query GetAll { /// listings { /// __typename - /// ... ListingsPayload + /// ...ListingsPayload /// } /// } /// /// fragment ListingsPayload on ListingsPayload { /// items { /// __typename - /// ... HasListingId - /// ... Offer - /// ... Auction + /// ...HasListingId + /// ...Offer + /// ...Auction /// } /// } /// @@ -503,16 +503,16 @@ namespace Foo.Bar /// query GetAll { /// listings { /// __typename - /// ... ListingsPayload + /// ...ListingsPayload /// } /// } /// /// fragment ListingsPayload on ListingsPayload { /// items { /// __typename - /// ... HasListingId - /// ... Offer - /// ... Auction + /// ...HasListingId + /// ...Offer + /// ...Auction /// } /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_Spec_Errors.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_Spec_Errors.snap index 0e6e8cc952a..060a696c5aa 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_Spec_Errors.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/SchemaGeneratorTests.Schema_With_Spec_Errors.snap @@ -188,7 +188,7 @@ namespace Foo.Bar /// query GetListingsCount { /// listings { /// __typename - /// ... ListingsPayload + /// ...ListingsPayload /// } /// } /// @@ -206,8 +206,8 @@ namespace Foo.Bar public static GetListingsCountQueryDocument Instance { get; } = new GetListingsCountQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query GetListingsCount { listings { __typename ... ListingsPayload } } fragment ListingsPayload on ListingsPayload { count }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "c3a13333bd2282e2d7ed111b99934a7610014ba3"); + public global::System.ReadOnlySpan Body => "query GetListingsCount { listings { __typename ...ListingsPayload } } fragment ListingsPayload on ListingsPayload { count }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "8c330f179395c98dec1f0f30613121541ce699b9"); public override global::System.String ToString() { @@ -226,7 +226,7 @@ namespace Foo.Bar /// query GetListingsCount { /// listings { /// __typename - /// ... ListingsPayload + /// ...ListingsPayload /// } /// } /// @@ -308,7 +308,7 @@ namespace Foo.Bar /// query GetListingsCount { /// listings { /// __typename - /// ... ListingsPayload + /// ...ListingsPayload /// } /// } /// diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Interface_With_Fragment_Definition_Two_Models.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Interface_With_Fragment_Definition_Two_Models.snap index 9510cb46175..4c93ea9c8df 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Interface_With_Fragment_Definition_Two_Models.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.CSharp.Tests/__snapshots__/StarWarsGeneratorTests.Interface_With_Fragment_Definition_Two_Models.snap @@ -550,7 +550,7 @@ namespace Foo.Bar /// query GetHero { /// hero(episode: NEW_HOPE) { /// __typename - /// ... Hero + /// ...Hero /// ... on Droid { /// id /// } @@ -562,8 +562,8 @@ namespace Foo.Bar /// /// fragment Hero on Character { /// name - /// ... Human - /// ... Droid + /// ...Human + /// ...Droid /// friends { /// __typename /// nodes { @@ -597,8 +597,8 @@ namespace Foo.Bar public static GetHeroQueryDocument Instance { get; } = new GetHeroQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => "query GetHero { hero(episode: NEW_HOPE) { __typename ... Hero ... on Droid { id } ... on Human { id } } } fragment Hero on Character { name ... Human ... Droid friends { __typename nodes { __typename name ... on Droid { id } ... on Human { id } } } } fragment Human on Human { homePlanet } fragment Droid on Droid { primaryFunction }"u8; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "180df66e91f5da244f1c1775dfec073d435d8faf"); + public global::System.ReadOnlySpan Body => "query GetHero { hero(episode: NEW_HOPE) { __typename ...Hero ... on Droid { id } ... on Human { id } } } fragment Hero on Character { name ...Human ...Droid friends { __typename nodes { __typename name ... on Droid { id } ... on Human { id } } } } fragment Human on Human { homePlanet } fragment Droid on Droid { primaryFunction }"u8; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("sha1Hash", "762edd0f61d0ce53f2af84137b3f9f6d7c07bc61"); public override global::System.String ToString() { @@ -617,7 +617,7 @@ namespace Foo.Bar /// query GetHero { /// hero(episode: NEW_HOPE) { /// __typename - /// ... Hero + /// ...Hero /// ... on Droid { /// id /// } @@ -629,8 +629,8 @@ namespace Foo.Bar /// /// fragment Hero on Character { /// name - /// ... Human - /// ... Droid + /// ...Human + /// ...Droid /// friends { /// __typename /// nodes { @@ -728,7 +728,7 @@ namespace Foo.Bar /// query GetHero { /// hero(episode: NEW_HOPE) { /// __typename - /// ... Hero + /// ...Hero /// ... on Droid { /// id /// } @@ -740,8 +740,8 @@ namespace Foo.Bar /// /// fragment Hero on Character { /// name - /// ... Human - /// ... Droid + /// ...Human + /// ...Droid /// friends { /// __typename /// nodes { diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Tests/Utilities/__snapshots__/OperationDocumentHelperTests.Extract_Operation_Documents.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Tests/Utilities/__snapshots__/OperationDocumentHelperTests.Extract_Operation_Documents.snap index 06de89e8d72..453c9d4c673 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Tests/Utilities/__snapshots__/OperationDocumentHelperTests.Extract_Operation_Documents.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Tests/Utilities/__snapshots__/OperationDocumentHelperTests.Extract_Operation_Documents.snap @@ -1,4 +1,4 @@ [ - "query GetBookTitles {\n books {\n ... BookInfo\n }\n}\n\nfragment BookInfo on Book {\n title\n}", - "query GetBooksAndAuthor {\n books {\n ... BookInfo\n author {\n ... AuthorInfo\n }\n }\n}\n\nfragment BookInfo on Book {\n title\n}\n\nfragment AuthorInfo on Author {\n name\n}" + "query GetBookTitles {\n books {\n ...BookInfo\n }\n}\n\nfragment BookInfo on Book {\n title\n}", + "query GetBooksAndAuthor {\n books {\n ...BookInfo\n author {\n ...AuthorInfo\n }\n }\n}\n\nfragment BookInfo on Book {\n title\n}\n\nfragment AuthorInfo on Author {\n name\n}" ] diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Tests/Utilities/__snapshots__/OperationDocumentHelperTests.Merge_Multiple_Documents.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Tests/Utilities/__snapshots__/OperationDocumentHelperTests.Merge_Multiple_Documents.snap index 2a5ec6df50b..013c878d81e 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Tests/Utilities/__snapshots__/OperationDocumentHelperTests.Merge_Multiple_Documents.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Tests/Utilities/__snapshots__/OperationDocumentHelperTests.Merge_Multiple_Documents.snap @@ -1,5 +1,5 @@ [ - "query GetBookTitles {\n books {\n ... BookInfo\n }\n}\n\nfragment BookInfo on Book {\n title\n}", - "query GetBooksAndAuthor {\n books {\n ... BookInfo\n author {\n ... AuthorInfo\n }\n }\n}\n\nfragment BookInfo on Book {\n title\n}\n\nfragment AuthorInfo on Author {\n name\n}", - "query GetAuthorsAndBooks {\n authors {\n ... AuthorInfo\n books {\n ... BookInfo\n }\n }\n}\n\nfragment AuthorInfo on Author {\n name\n}\n\nfragment BookInfo on Book {\n title\n}" + "query GetBookTitles {\n books {\n ...BookInfo\n }\n}\n\nfragment BookInfo on Book {\n title\n}", + "query GetBooksAndAuthor {\n books {\n ...BookInfo\n author {\n ...AuthorInfo\n }\n }\n}\n\nfragment BookInfo on Book {\n title\n}\n\nfragment AuthorInfo on Author {\n name\n}", + "query GetAuthorsAndBooks {\n authors {\n ...AuthorInfo\n books {\n ...BookInfo\n }\n }\n}\n\nfragment AuthorInfo on Author {\n name\n}\n\nfragment BookInfo on Book {\n title\n}" ] diff --git a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Tests/Utilities/__snapshots__/QueryDocumentRewriterTests.GetReturnTypeName.snap b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Tests/Utilities/__snapshots__/QueryDocumentRewriterTests.GetReturnTypeName.snap index 46fed689d8a..7afff804b32 100644 --- a/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Tests/Utilities/__snapshots__/QueryDocumentRewriterTests.GetReturnTypeName.snap +++ b/src/StrawberryShake/CodeGeneration/test/CodeGeneration.Tests/Utilities/__snapshots__/QueryDocumentRewriterTests.GetReturnTypeName.snap @@ -1,7 +1,7 @@ query GetHero { hero(episode: NEW_HOPE) { __typename - ... Characters + ...Characters ... on Droid { id } @@ -12,8 +12,8 @@ } fragment Characters on Character { - ... Human - ... Droid + ...Human + ...Droid } fragment Hero on Character { @@ -21,11 +21,11 @@ fragment Hero on Character { } fragment Human on Human { - ... Hero + ...Hero homePlanet } fragment Droid on Droid { - ... Hero + ...Hero primaryFunction }