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 {
"""
The Global ID of the most recent acceptable version
"""
earlierOrEqualToId: ID
earlierOrEqualToId: DesignManagementVersionID
"""
The SHA256 of the most recent acceptable version
......@@ -5279,7 +5279,7 @@ type DesignCollection {
"""
Find a design by its ID
"""
id: ID
id: DesignManagementDesignID
): Design
"""
......@@ -5289,7 +5289,7 @@ type DesignCollection {
"""
The Global ID of the design at this version
"""
id: ID!
id: DesignManagementDesignAtVersionID!
): DesignAtVersion
"""
......@@ -5305,7 +5305,7 @@ type DesignCollection {
Filters designs to only those that existed at the version. If argument is
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.
......@@ -5325,7 +5325,7 @@ type DesignCollection {
"""
Filters designs by their ID
"""
ids: [ID!]
ids: [DesignManagementDesignID!]
"""
Returns the last _n_ elements from the list.
......@@ -5350,7 +5350,7 @@ type DesignCollection {
"""
The Global ID of the version
"""
id: ID
id: DesignManagementVersionID
"""
The SHA256 of a specific version
......@@ -5375,7 +5375,7 @@ type DesignCollection {
"""
The Global ID of the most recent acceptable version
"""
earlierOrEqualToId: ID
earlierOrEqualToId: DesignManagementVersionID
"""
The SHA256 of the most recent acceptable version
......@@ -5509,7 +5509,7 @@ type DesignManagement {
"""
The Global ID of the design at this version
"""
id: ID!
id: DesignManagementDesignAtVersionID!
): DesignAtVersion
"""
......@@ -5519,7 +5519,7 @@ type DesignManagement {
"""
The Global ID of the version
"""
id: ID!
id: DesignManagementVersionID!
): DesignVersion
}
......@@ -5568,6 +5568,11 @@ type DesignManagementDeletePayload {
version: DesignVersion
}
"""
Identifier of DesignManagement::DesignAtVersion
"""
scalar DesignManagementDesignAtVersionID
"""
Identifier of DesignManagement::Design
"""
......@@ -5668,6 +5673,11 @@ type DesignManagementUploadPayload {
skippedDesigns: [Design!]!
}
"""
Identifier of DesignManagement::Version
"""
scalar DesignManagementVersionID
"""
A specific version in which designs were added, modified or deleted
"""
......@@ -5679,7 +5689,7 @@ type DesignVersion {
"""
The ID of a specific design
"""
designId: ID
designId: DesignManagementDesignID
"""
The filename of a specific design
......@@ -5689,7 +5699,7 @@ type DesignVersion {
"""
The ID of the DesignAtVersion
"""
id: ID
id: DesignManagementDesignAtVersionID
): DesignAtVersion!
"""
......@@ -5744,7 +5754,7 @@ type DesignVersion {
"""
Filters designs by their ID
"""
ids: [ID!]
ids: [DesignManagementDesignID!]
"""
Returns the last _n_ elements from the list.
......
......@@ -13948,7 +13948,7 @@
"description": "The Global ID of the most recent acceptable version",
"type": {
"kind": "SCALAR",
"name": "ID",
"name": "DesignManagementVersionID",
"ofType": null
},
"defaultValue": null
......@@ -14397,7 +14397,7 @@
"description": "Find a design by its ID",
"type": {
"kind": "SCALAR",
"name": "ID",
"name": "DesignManagementDesignID",
"ofType": null
},
"defaultValue": null
......@@ -14433,7 +14433,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "ID",
"name": "DesignManagementDesignAtVersionID",
"ofType": null
}
},
......@@ -14463,7 +14463,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "ID",
"name": "DesignManagementDesignID",
"ofType": null
}
}
......@@ -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",
"type": {
"kind": "SCALAR",
"name": "ID",
"name": "DesignManagementVersionID",
"ofType": null
},
"defaultValue": null
......@@ -14606,7 +14606,7 @@
"description": "The Global ID of the version",
"type": {
"kind": "SCALAR",
"name": "ID",
"name": "DesignManagementVersionID",
"ofType": null
},
"defaultValue": null
......@@ -14639,7 +14639,7 @@
"description": "The Global ID of the most recent acceptable version",
"type": {
"kind": "SCALAR",
"name": "ID",
"name": "DesignManagementVersionID",
"ofType": null
},
"defaultValue": null
......@@ -15061,7 +15061,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "ID",
"name": "DesignManagementDesignAtVersionID",
"ofType": null
}
},
......@@ -15088,7 +15088,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "ID",
"name": "DesignManagementVersionID",
"ofType": null
}
},
......@@ -15249,6 +15249,16 @@
"enumValues": null,
"possibleTypes": null
},
{
"kind": "SCALAR",
"name": "DesignManagementDesignAtVersionID",
"description": "Identifier of DesignManagement::DesignAtVersion",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "SCALAR",
"name": "DesignManagementDesignID",
......@@ -15557,6 +15567,16 @@
"enumValues": null,
"possibleTypes": null
},
{
"kind": "SCALAR",
"name": "DesignManagementVersionID",
"description": "Identifier of DesignManagement::Version",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
"name": "DesignVersion",
......@@ -15571,7 +15591,7 @@
"description": "The ID of the DesignAtVersion",
"type": {
"kind": "SCALAR",
"name": "ID",
"name": "DesignManagementDesignAtVersionID",
"ofType": null
},
"defaultValue": null
......@@ -15581,7 +15601,7 @@
"description": "The ID of a specific design",
"type": {
"kind": "SCALAR",
"name": "ID",
"name": "DesignManagementDesignID",
"ofType": null
},
"defaultValue": null
......@@ -15681,7 +15701,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "ID",
"name": "DesignManagementDesignID",
"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