@nautical-commerce/graphql-schema 2.37.1 → 2.39.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/nautical/schema.graphql +19 -98
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
|
@@ -1,57 +1,3 @@
|
|
|
1
|
-
"""Federation @key directive"""
|
|
2
|
-
directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE
|
|
3
|
-
|
|
4
|
-
"""Federation @requires directive"""
|
|
5
|
-
directive @requires(fields: FieldSet!) on FIELD_DEFINITION
|
|
6
|
-
|
|
7
|
-
"""Federation @provides directive"""
|
|
8
|
-
directive @provides(fields: FieldSet!) on FIELD_DEFINITION
|
|
9
|
-
|
|
10
|
-
"""Federation @external directive"""
|
|
11
|
-
directive @external on OBJECT | FIELD_DEFINITION
|
|
12
|
-
|
|
13
|
-
"""Federation @shareable directive"""
|
|
14
|
-
directive @shareable repeatable on FIELD_DEFINITION | OBJECT
|
|
15
|
-
|
|
16
|
-
"""Federation @extends directive"""
|
|
17
|
-
directive @extends on OBJECT | INTERFACE
|
|
18
|
-
|
|
19
|
-
"""Federation @override directive"""
|
|
20
|
-
directive @override(from: String!, label: String) on FIELD_DEFINITION
|
|
21
|
-
|
|
22
|
-
"""Federation @inaccessible directive"""
|
|
23
|
-
directive @inaccessible on FIELD_DEFINITION | OBJECT | INTERFACE | UNION | ENUM | ENUM_VALUE | SCALAR | INPUT_OBJECT | INPUT_FIELD_DEFINITION | ARGUMENT_DEFINITION
|
|
24
|
-
|
|
25
|
-
"""Federation @tag directive"""
|
|
26
|
-
directive @tag on FIELD_DEFINITION | INTERFACE | OBJECT | UNION | ARGUMENT_DEFINITION | SCALAR | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION
|
|
27
|
-
|
|
28
|
-
"""Federation @composeDirective directive"""
|
|
29
|
-
directive @composeDirective(name: String!) on SCHEMA
|
|
30
|
-
|
|
31
|
-
"""Federation @interfaceObject directive"""
|
|
32
|
-
directive @interfaceObject repeatable on OBJECT
|
|
33
|
-
|
|
34
|
-
"""Federation @authenticated directive"""
|
|
35
|
-
directive @authenticated on FIELD_DEFINITION | OBJECT | INTERFACE | SCALAR | ENUM
|
|
36
|
-
|
|
37
|
-
"""Federation @requiresScopes directive"""
|
|
38
|
-
directive @requiresScopes(scopes: [[federation__Scope!]!]!) on FIELD_DEFINITION | OBJECT | INTERFACE | SCALAR | ENUM
|
|
39
|
-
|
|
40
|
-
"""Federation @policy directive"""
|
|
41
|
-
directive @policy(policies: [[federation__Policy!]!]!) on FIELD_DEFINITION | OBJECT | INTERFACE | SCALAR | ENUM
|
|
42
|
-
|
|
43
|
-
"""Federation @context directive"""
|
|
44
|
-
directive @context(name: String!) repeatable on OBJECT | INTERFACE | UNION
|
|
45
|
-
|
|
46
|
-
"""Federation @fromContext directive"""
|
|
47
|
-
directive @from_context(field: federation__ContextFieldValue) on ARGUMENT_DEFINITION
|
|
48
|
-
|
|
49
|
-
"""Federation @listSize directive"""
|
|
50
|
-
directive @listSize(assumedSize: Int, slicingArguments: [String!], sizedFields: [String!], requireOneSlicingArgument: Boolean) on FIELD_DEFINITION
|
|
51
|
-
|
|
52
|
-
"""Federation @cost directive"""
|
|
53
|
-
directive @cost(weight: Int!) on ARGUMENT_DEFINITION | FIELD_DEFINITION | INPUT_FIELD_DEFINITION | OBJECT | SCALAR | ENUM
|
|
54
|
-
|
|
55
1
|
"""
|
|
56
2
|
Custom Decimal scalar implementation.
|
|
57
3
|
|
|
@@ -65,23 +11,6 @@ schema validation tools like graphql-inspector.
|
|
|
65
11
|
"""
|
|
66
12
|
scalar Decimal
|
|
67
13
|
|
|
68
|
-
"""
|
|
69
|
-
The Relay compliant `PageInfo` type, containing data necessary to paginate this connection.
|
|
70
|
-
"""
|
|
71
|
-
type PageInfo {
|
|
72
|
-
"""When paginating forwards, are there more items?"""
|
|
73
|
-
hasNextPage: Boolean!
|
|
74
|
-
|
|
75
|
-
"""When paginating backwards, are there more items?"""
|
|
76
|
-
hasPreviousPage: Boolean!
|
|
77
|
-
|
|
78
|
-
"""When paginating backwards, the cursor to continue."""
|
|
79
|
-
startCursor: String
|
|
80
|
-
|
|
81
|
-
"""When paginating forwards, the cursor to continue."""
|
|
82
|
-
endCursor: String
|
|
83
|
-
}
|
|
84
|
-
|
|
85
14
|
type Query {
|
|
86
15
|
"""Look up a marketplace subscription by id."""
|
|
87
16
|
marketplaceSubscription(
|
|
@@ -1895,8 +1824,6 @@ type Query {
|
|
|
1895
1824
|
email: String!
|
|
1896
1825
|
): Boolean
|
|
1897
1826
|
_debug: DjangoDebug
|
|
1898
|
-
_entities(representations: [_Any!]!): [_Entity]!
|
|
1899
|
-
_service: _Service!
|
|
1900
1827
|
}
|
|
1901
1828
|
|
|
1902
1829
|
"""Represents a marketplace subscription."""
|
|
@@ -1931,6 +1858,23 @@ type MarketplaceSubscriptionCountableConnection {
|
|
|
1931
1858
|
totalCount: Int
|
|
1932
1859
|
}
|
|
1933
1860
|
|
|
1861
|
+
"""
|
|
1862
|
+
The Relay compliant `PageInfo` type, containing data necessary to paginate this connection.
|
|
1863
|
+
"""
|
|
1864
|
+
type PageInfo {
|
|
1865
|
+
"""When paginating forwards, are there more items?"""
|
|
1866
|
+
hasNextPage: Boolean!
|
|
1867
|
+
|
|
1868
|
+
"""When paginating backwards, are there more items?"""
|
|
1869
|
+
hasPreviousPage: Boolean!
|
|
1870
|
+
|
|
1871
|
+
"""When paginating backwards, the cursor to continue."""
|
|
1872
|
+
startCursor: String
|
|
1873
|
+
|
|
1874
|
+
"""When paginating forwards, the cursor to continue."""
|
|
1875
|
+
endCursor: String
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1934
1878
|
type MarketplaceSubscriptionCountableEdge {
|
|
1935
1879
|
"""The item at the end of the edge."""
|
|
1936
1880
|
node: MarketplaceSubscription!
|
|
@@ -12717,14 +12661,6 @@ type DjangoDebugException {
|
|
|
12717
12661
|
stack: String!
|
|
12718
12662
|
}
|
|
12719
12663
|
|
|
12720
|
-
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | Collection | ProductImage | ProductVideo | ProductStatusLog | Group | App
|
|
12721
|
-
|
|
12722
|
-
scalar _Any
|
|
12723
|
-
|
|
12724
|
-
type _Service {
|
|
12725
|
-
sdl: String
|
|
12726
|
-
}
|
|
12727
|
-
|
|
12728
12664
|
type Mutation {
|
|
12729
12665
|
"""EmailTemplate update mutation."""
|
|
12730
12666
|
emailTemplateUpdate(
|
|
@@ -12757,7 +12693,7 @@ type Mutation {
|
|
|
12757
12693
|
description: String
|
|
12758
12694
|
|
|
12759
12695
|
"""
|
|
12760
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/x-
|
|
12696
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/x-tar, image/jpg, text/x-pdf, text/svg, application/vnd.oasis.opendocument.text, application/zip, application/x-pdf, application/svg+xml, image/tif, application/x-csv, application/csv, image/x-bmp, image/heic, application/dwg, application/acad, image/heic-sequence, image/tiff, application/vnd.ms-excel, application/x-rar-compressed, image/bmp, application/tiff, application/gzip-compressed, pplication/vnd.rar, text/pdf, text/plain, image/x-eps, image/x-dxf, application/x-dwg, text/x-csv, application/vnd.pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-eps, image/x-dwg, drawing/x-dwf, text/csv, text/svg-xml, application/eps, application/x-rar, application/x-rtf, application/x-acad, application/pdf, image/x-tif, image/svg+xml, image/jpeg, application/x-autocad, image/x-ms-bmp, image/x-tiff, application/x-gzip, application/x-jpg, application/x-dxf, application/vnd.ms-word, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/acrobat, image/vnd.dwg, application/x-tiff, image/heif-sequence, application/postscript, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/svg, image/webp, application/tif, image/eps, image/png, application/x-zip-compressed, application/vnd.oasis.opendocument.spreadsheet, image/dxf, application/gzip, text/x-comma-separated-values, application/vnd.oasis.opendocument.presentation, application/gzipped, drawing/dwg, text/comma-separated-values, application/dxf, drawing/x-dwg, text/rtf, application/jpg, application/excel, application/vnd.ms-powerpoint, application/rtf, application/x-tif, image/gif, application/msword, image/heif.
|
|
12761
12697
|
"""
|
|
12762
12698
|
file: Upload!
|
|
12763
12699
|
|
|
@@ -21031,6 +20967,7 @@ enum InvoiceErrorCode {
|
|
|
21031
20967
|
NOT_FOUND
|
|
21032
20968
|
INVALID_STATUS
|
|
21033
20969
|
NOT_ALLOWED
|
|
20970
|
+
FORBIDDEN
|
|
21034
20971
|
}
|
|
21035
20972
|
|
|
21036
20973
|
"""Requests deletion of an invoice."""
|
|
@@ -23160,19 +23097,3 @@ input PermissionGroupUpdateInput {
|
|
|
23160
23097
|
"""List of users to unassign from this group."""
|
|
23161
23098
|
removeUsers: [ID!]
|
|
23162
23099
|
}
|
|
23163
|
-
|
|
23164
|
-
"""
|
|
23165
|
-
A string-serialized scalar represents a set of fields that's passed to a federated directive, such as @key, @requires, or @provides
|
|
23166
|
-
"""
|
|
23167
|
-
scalar FieldSet
|
|
23168
|
-
|
|
23169
|
-
"""This string-serialized scalar represents a JWT scope"""
|
|
23170
|
-
scalar federation__Scope
|
|
23171
|
-
|
|
23172
|
-
"""This string-serialized scalar represents an authorization policy."""
|
|
23173
|
-
scalar federation__Policy
|
|
23174
|
-
|
|
23175
|
-
"""
|
|
23176
|
-
Contains the name of a defined context and a selection of a field from the context's type
|
|
23177
|
-
"""
|
|
23178
|
-
scalar federation__ContextFieldValue
|