Commit 5a2badd8 authored by Alex Kalderimis's avatar Alex Kalderimis Committed by Alex Kalderimis

Update GraphQL documentation

parent 6e953abe
...@@ -5139,7 +5139,7 @@ type Design implements CurrentUserTodos & DesignFields & Noteable { ...@@ -5139,7 +5139,7 @@ type Design implements CurrentUserTodos & DesignFields & Noteable {
""" """
The Global ID of the most recent acceptable version The Global ID of the most recent acceptable version
""" """
earlierOrEqualToId: ID earlierOrEqualToId: DesignManagementVersionID
""" """
The SHA256 of the most recent acceptable version The SHA256 of the most recent acceptable version
...@@ -5279,7 +5279,7 @@ type DesignCollection { ...@@ -5279,7 +5279,7 @@ type DesignCollection {
""" """
Find a design by its ID Find a design by its ID
""" """
id: ID id: DesignManagementDesignID
): Design ): Design
""" """
...@@ -5289,7 +5289,7 @@ type DesignCollection { ...@@ -5289,7 +5289,7 @@ type DesignCollection {
""" """
The Global ID of the design at this version The Global ID of the design at this version
""" """
id: ID! id: DesignManagementDesignAtVersionID!
): DesignAtVersion ): DesignAtVersion
""" """
...@@ -5305,7 +5305,7 @@ type DesignCollection { ...@@ -5305,7 +5305,7 @@ type DesignCollection {
Filters designs to only those that existed at the version. If argument is Filters designs to only those that existed at the version. If argument is
omitted or nil then all designs will reflect the latest version omitted or nil then all designs will reflect the latest version
""" """
atVersion: ID atVersion: DesignManagementVersionID
""" """
Returns the elements in the list that come before the specified cursor. Returns the elements in the list that come before the specified cursor.
...@@ -5325,7 +5325,7 @@ type DesignCollection { ...@@ -5325,7 +5325,7 @@ type DesignCollection {
""" """
Filters designs by their ID Filters designs by their ID
""" """
ids: [ID!] ids: [DesignManagementDesignID!]
""" """
Returns the last _n_ elements from the list. Returns the last _n_ elements from the list.
...@@ -5350,7 +5350,7 @@ type DesignCollection { ...@@ -5350,7 +5350,7 @@ type DesignCollection {
""" """
The Global ID of the version The Global ID of the version
""" """
id: ID id: DesignManagementVersionID
""" """
The SHA256 of a specific version The SHA256 of a specific version
...@@ -5375,7 +5375,7 @@ type DesignCollection { ...@@ -5375,7 +5375,7 @@ type DesignCollection {
""" """
The Global ID of the most recent acceptable version The Global ID of the most recent acceptable version
""" """
earlierOrEqualToId: ID earlierOrEqualToId: DesignManagementVersionID
""" """
The SHA256 of the most recent acceptable version The SHA256 of the most recent acceptable version
...@@ -5509,7 +5509,7 @@ type DesignManagement { ...@@ -5509,7 +5509,7 @@ type DesignManagement {
""" """
The Global ID of the design at this version The Global ID of the design at this version
""" """
id: ID! id: DesignManagementDesignAtVersionID!
): DesignAtVersion ): DesignAtVersion
""" """
...@@ -5519,7 +5519,7 @@ type DesignManagement { ...@@ -5519,7 +5519,7 @@ type DesignManagement {
""" """
The Global ID of the version The Global ID of the version
""" """
id: ID! id: DesignManagementVersionID!
): DesignVersion ): DesignVersion
} }
...@@ -5568,6 +5568,11 @@ type DesignManagementDeletePayload { ...@@ -5568,6 +5568,11 @@ type DesignManagementDeletePayload {
version: DesignVersion version: DesignVersion
} }
"""
Identifier of DesignManagement::DesignAtVersion
"""
scalar DesignManagementDesignAtVersionID
""" """
Identifier of DesignManagement::Design Identifier of DesignManagement::Design
""" """
...@@ -5668,6 +5673,11 @@ type DesignManagementUploadPayload { ...@@ -5668,6 +5673,11 @@ type DesignManagementUploadPayload {
skippedDesigns: [Design!]! skippedDesigns: [Design!]!
} }
"""
Identifier of DesignManagement::Version
"""
scalar DesignManagementVersionID
""" """
A specific version in which designs were added, modified or deleted A specific version in which designs were added, modified or deleted
""" """
...@@ -5679,7 +5689,7 @@ type DesignVersion { ...@@ -5679,7 +5689,7 @@ type DesignVersion {
""" """
The ID of a specific design The ID of a specific design
""" """
designId: ID designId: DesignManagementDesignID
""" """
The filename of a specific design The filename of a specific design
...@@ -5689,7 +5699,7 @@ type DesignVersion { ...@@ -5689,7 +5699,7 @@ type DesignVersion {
""" """
The ID of the DesignAtVersion The ID of the DesignAtVersion
""" """
id: ID id: DesignManagementDesignAtVersionID
): DesignAtVersion! ): DesignAtVersion!
""" """
...@@ -5744,7 +5754,7 @@ type DesignVersion { ...@@ -5744,7 +5754,7 @@ type DesignVersion {
""" """
Filters designs by their ID Filters designs by their ID
""" """
ids: [ID!] ids: [DesignManagementDesignID!]
""" """
Returns the last _n_ elements from the list. Returns the last _n_ elements from the list.
......
...@@ -13948,7 +13948,7 @@ ...@@ -13948,7 +13948,7 @@
"description": "The Global ID of the most recent acceptable version", "description": "The Global ID of the most recent acceptable version",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "ID", "name": "DesignManagementVersionID",
"ofType": null "ofType": null
}, },
"defaultValue": null "defaultValue": null
...@@ -14397,7 +14397,7 @@ ...@@ -14397,7 +14397,7 @@
"description": "Find a design by its ID", "description": "Find a design by its ID",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "ID", "name": "DesignManagementDesignID",
"ofType": null "ofType": null
}, },
"defaultValue": null "defaultValue": null
...@@ -14433,7 +14433,7 @@ ...@@ -14433,7 +14433,7 @@
"name": null, "name": null,
"ofType": { "ofType": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "ID", "name": "DesignManagementDesignAtVersionID",
"ofType": null "ofType": null
} }
}, },
...@@ -14463,7 +14463,7 @@ ...@@ -14463,7 +14463,7 @@
"name": null, "name": null,
"ofType": { "ofType": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "ID", "name": "DesignManagementDesignID",
"ofType": null "ofType": null
} }
} }
...@@ -14493,7 +14493,7 @@ ...@@ -14493,7 +14493,7 @@
"description": "Filters designs to only those that existed at the version. If argument is omitted or nil then all designs will reflect the latest version", "description": "Filters designs to only those that existed at the version. If argument is omitted or nil then all designs will reflect the latest version",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "ID", "name": "DesignManagementVersionID",
"ofType": null "ofType": null
}, },
"defaultValue": null "defaultValue": null
...@@ -14606,7 +14606,7 @@ ...@@ -14606,7 +14606,7 @@
"description": "The Global ID of the version", "description": "The Global ID of the version",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "ID", "name": "DesignManagementVersionID",
"ofType": null "ofType": null
}, },
"defaultValue": null "defaultValue": null
...@@ -14639,7 +14639,7 @@ ...@@ -14639,7 +14639,7 @@
"description": "The Global ID of the most recent acceptable version", "description": "The Global ID of the most recent acceptable version",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "ID", "name": "DesignManagementVersionID",
"ofType": null "ofType": null
}, },
"defaultValue": null "defaultValue": null
...@@ -15061,7 +15061,7 @@ ...@@ -15061,7 +15061,7 @@
"name": null, "name": null,
"ofType": { "ofType": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "ID", "name": "DesignManagementDesignAtVersionID",
"ofType": null "ofType": null
} }
}, },
...@@ -15088,7 +15088,7 @@ ...@@ -15088,7 +15088,7 @@
"name": null, "name": null,
"ofType": { "ofType": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "ID", "name": "DesignManagementVersionID",
"ofType": null "ofType": null
} }
}, },
...@@ -15249,6 +15249,16 @@ ...@@ -15249,6 +15249,16 @@
"enumValues": null, "enumValues": null,
"possibleTypes": null "possibleTypes": null
}, },
{
"kind": "SCALAR",
"name": "DesignManagementDesignAtVersionID",
"description": "Identifier of DesignManagement::DesignAtVersion",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{ {
"kind": "SCALAR", "kind": "SCALAR",
"name": "DesignManagementDesignID", "name": "DesignManagementDesignID",
...@@ -15557,6 +15567,16 @@ ...@@ -15557,6 +15567,16 @@
"enumValues": null, "enumValues": null,
"possibleTypes": null "possibleTypes": null
}, },
{
"kind": "SCALAR",
"name": "DesignManagementVersionID",
"description": "Identifier of DesignManagement::Version",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{ {
"kind": "OBJECT", "kind": "OBJECT",
"name": "DesignVersion", "name": "DesignVersion",
...@@ -15571,7 +15591,7 @@ ...@@ -15571,7 +15591,7 @@
"description": "The ID of the DesignAtVersion", "description": "The ID of the DesignAtVersion",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "ID", "name": "DesignManagementDesignAtVersionID",
"ofType": null "ofType": null
}, },
"defaultValue": null "defaultValue": null
...@@ -15581,7 +15601,7 @@ ...@@ -15581,7 +15601,7 @@
"description": "The ID of a specific design", "description": "The ID of a specific design",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "ID", "name": "DesignManagementDesignID",
"ofType": null "ofType": null
}, },
"defaultValue": null "defaultValue": null
...@@ -15681,7 +15701,7 @@ ...@@ -15681,7 +15701,7 @@
"name": null, "name": null,
"ofType": { "ofType": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "ID", "name": "DesignManagementDesignID",
"ofType": null "ofType": null
} }
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment