Update Scheme

This commit is contained in:
Syer10
2024-03-31 01:24:03 +00:00
parent 5695de055f
commit 681f1531d3

View File

@@ -56,11 +56,6 @@ type BindTrackPayload {
trackRecord: TrackRecordType! trackRecord: TrackRecordType!
} }
"""
Built-in Boolean
"""
scalar Boolean
input BooleanFilterInput { input BooleanFilterInput {
distinctFrom: Boolean distinctFrom: Boolean
@@ -906,11 +901,6 @@ input FilterChangeInput {
triState: TriState triState: TriState
} }
"""
Built-in Float
"""
scalar Float
input FloatFilterInput { input FloatFilterInput {
distinctFrom: Float distinctFrom: Float
@@ -987,11 +977,6 @@ type InstallExternalExtensionPayload {
extension: ExtensionType! extension: ExtensionType!
} }
"""
Built-in Int
"""
scalar Int
input IntFilterInput { input IntFilterInput {
distinctFrom: Int distinctFrom: Int
@@ -2265,11 +2250,6 @@ type StopDownloaderPayload {
downloadStatus: DownloadStatus! downloadStatus: DownloadStatus!
} }
"""
Built-in String
"""
scalar String
input StringFilterInput { input StringFilterInput {
distinctFrom: String distinctFrom: String
@@ -2981,6 +2961,8 @@ type WebUIUpdateStatus {
state: UpdateState! state: UpdateState!
} }
# See https://github.com/JetBrains/js-graphql-intellij-plugin/issues/665
# noinspection GraphQLTypeRedefinition
type __Directive { type __Directive {
""" """
The __Directive type represents a Directive that a server supports. The __Directive type represents a Directive that a server supports.
@@ -2996,6 +2978,8 @@ type __Directive {
args(includeDeprecated: Boolean = false): [__InputValue!]! args(includeDeprecated: Boolean = false): [__InputValue!]!
} }
# See https://github.com/JetBrains/js-graphql-intellij-plugin/issues/665
# noinspection GraphQLTypeRedefinition
""" """
An enum describing valid locations where a directive can be placed An enum describing valid locations where a directive can be placed
""" """
@@ -3096,6 +3080,8 @@ enum __DirectiveLocation {
INPUT_FIELD_DEFINITION INPUT_FIELD_DEFINITION
} }
# See https://github.com/JetBrains/js-graphql-intellij-plugin/issues/665
# noinspection GraphQLTypeRedefinition
type __EnumValue { type __EnumValue {
name: String! name: String!
@@ -3106,6 +3092,8 @@ type __EnumValue {
deprecationReason: String deprecationReason: String
} }
# See https://github.com/JetBrains/js-graphql-intellij-plugin/issues/665
# noinspection GraphQLTypeRedefinition
type __Field { type __Field {
name: String! name: String!
@@ -3120,6 +3108,8 @@ type __Field {
deprecationReason: String deprecationReason: String
} }
# See https://github.com/JetBrains/js-graphql-intellij-plugin/issues/665
# noinspection GraphQLTypeRedefinition
type __InputValue { type __InputValue {
name: String! name: String!
@@ -3134,6 +3124,8 @@ type __InputValue {
deprecationReason: String deprecationReason: String
} }
# See https://github.com/JetBrains/js-graphql-intellij-plugin/issues/665
# noinspection GraphQLTypeRedefinition
""" """
A GraphQL Introspection defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, the entry points for query, mutation, and subscription operations. A GraphQL Introspection defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, the entry points for query, mutation, and subscription operations.
""" """
@@ -3166,6 +3158,8 @@ type __Schema {
subscriptionType: __Type subscriptionType: __Type
} }
# See https://github.com/JetBrains/js-graphql-intellij-plugin/issues/665
# noinspection GraphQLTypeRedefinition
type __Type { type __Type {
kind: __TypeKind! kind: __TypeKind!
@@ -3190,6 +3184,8 @@ type __Type {
specifiedByUrl: String @deprecated(reason: "This legacy name has been replaced by `specifiedByURL`") specifiedByUrl: String @deprecated(reason: "This legacy name has been replaced by `specifiedByURL`")
} }
# See https://github.com/JetBrains/js-graphql-intellij-plugin/issues/665
# noinspection GraphQLTypeRedefinition
""" """
An enum describing what kind of type a given __Type is An enum describing what kind of type a given __Type is
""" """
@@ -3235,21 +3231,29 @@ enum __TypeKind {
NON_NULL NON_NULL
} }
# See https://github.com/JetBrains/js-graphql-intellij-plugin/issues/665
# noinspection GraphQLTypeRedefinition
""" """
Directs the executor to include this field or fragment only when the `if` argument is true 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|FRAGMENT_SPREAD|INLINE_FRAGMENT directive @include ("Included when true." if: Boolean!) on FIELD|FRAGMENT_SPREAD|INLINE_FRAGMENT
# See https://github.com/JetBrains/js-graphql-intellij-plugin/issues/665
# noinspection GraphQLTypeRedefinition
""" """
Directs the executor to skip this field or fragment when the `if` argument is true. Directs the executor to skip this field or fragment when the `if` argument is true.
""" """
directive @skip ("Skipped when true." if: Boolean!) on FIELD|FRAGMENT_SPREAD|INLINE_FRAGMENT directive @skip ("Skipped when true." if: Boolean!) on FIELD|FRAGMENT_SPREAD|INLINE_FRAGMENT
# See https://github.com/JetBrains/js-graphql-intellij-plugin/issues/665
# noinspection GraphQLTypeRedefinition
""" """
Marks the field, argument, input field or enum value as deprecated Marks the field, argument, input field or enum value as deprecated
""" """
directive @deprecated ("The reason for the deprecation" reason: String = "No longer supported") on FIELD_DEFINITION|ARGUMENT_DEFINITION|ENUM_VALUE|INPUT_FIELD_DEFINITION directive @deprecated ("The reason for the deprecation" reason: String = "No longer supported") on FIELD_DEFINITION|ARGUMENT_DEFINITION|ENUM_VALUE|INPUT_FIELD_DEFINITION
# See https://github.com/JetBrains/js-graphql-intellij-plugin/issues/665
# noinspection GraphQLTypeRedefinition
""" """
Exposes a URL that specifies the behaviour of this scalar. Exposes a URL that specifies the behaviour of this scalar.
""" """