Skip to content

Commit 2bd0a2a

Browse files
WIP
1 parent d9485d3 commit 2bd0a2a

24 files changed

+28473
-21505
lines changed

packages/api/generated-schema.gql

+86
Original file line numberDiff line numberDiff line change
@@ -1044,6 +1044,43 @@ type CopyAppearancePayload {
10441044
query: Query
10451045
}
10461046

1047+
"""All input for the `copyDataLibraryTemplateItem` mutation."""
1048+
input CopyDataLibraryTemplateItemInput {
1049+
"""
1050+
An arbitrary string value with no semantic meaning. Will be included in the
1051+
payload verbatim. May be used to track mutations by the client.
1052+
"""
1053+
clientMutationId: String
1054+
projectSlug: String
1055+
templateId: String
1056+
}
1057+
1058+
"""The output of our `copyDataLibraryTemplateItem` mutation."""
1059+
type CopyDataLibraryTemplateItemPayload {
1060+
"""
1061+
The exact same `clientMutationId` that was provided in the mutation input,
1062+
unchanged and unused. May be used by a client to track mutations.
1063+
"""
1064+
clientMutationId: String
1065+
1066+
"""
1067+
Reads a single `DataLayer` that is related to this `TableOfContentsItem`.
1068+
"""
1069+
dataLayer: DataLayer
1070+
1071+
"""
1072+
Our root query field type. Allows us to run any query from our mutation payload.
1073+
"""
1074+
query: Query
1075+
tableOfContentsItem: TableOfContentsItem
1076+
1077+
"""An edge for our `TableOfContentsItem`. May be used by Relay 1."""
1078+
tableOfContentsItemEdge(
1079+
"""The method to use when ordering `TableOfContentsItem`."""
1080+
orderBy: [TableOfContentsItemsOrderBy!] = [PRIMARY_KEY_ASC]
1081+
): TableOfContentsItemsEdge
1082+
}
1083+
10471084
"""All input for the `copySketchFolder` mutation."""
10481085
input CopySketchFolderInput {
10491086
"""
@@ -5032,6 +5069,42 @@ type DownloadOption {
50325069
url: String
50335070
}
50345071

5072+
"""All input for the `duplicateTableOfContentsItem` mutation."""
5073+
input DuplicateTableOfContentsItemInput {
5074+
"""
5075+
An arbitrary string value with no semantic meaning. Will be included in the
5076+
payload verbatim. May be used to track mutations by the client.
5077+
"""
5078+
clientMutationId: String
5079+
itemId: Int
5080+
}
5081+
5082+
"""The output of our `duplicateTableOfContentsItem` mutation."""
5083+
type DuplicateTableOfContentsItemPayload {
5084+
"""
5085+
The exact same `clientMutationId` that was provided in the mutation input,
5086+
unchanged and unused. May be used by a client to track mutations.
5087+
"""
5088+
clientMutationId: String
5089+
5090+
"""
5091+
Reads a single `DataLayer` that is related to this `TableOfContentsItem`.
5092+
"""
5093+
dataLayer: DataLayer
5094+
5095+
"""
5096+
Our root query field type. Allows us to run any query from our mutation payload.
5097+
"""
5098+
query: Query
5099+
tableOfContentsItem: TableOfContentsItem
5100+
5101+
"""An edge for our `TableOfContentsItem`. May be used by Relay 1."""
5102+
tableOfContentsItemEdge(
5103+
"""The method to use when ordering `TableOfContentsItem`."""
5104+
orderBy: [TableOfContentsItemsOrderBy!] = [PRIMARY_KEY_ASC]
5105+
): TableOfContentsItemsEdge
5106+
}
5107+
50355108
scalar Email
50365109

50375110
"""
@@ -7752,6 +7825,12 @@ type Mutation {
77527825
"""
77537826
input: CopyAppearanceInput!
77547827
): CopyAppearancePayload
7828+
copyDataLibraryTemplateItem(
7829+
"""
7830+
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
7831+
"""
7832+
input: CopyDataLibraryTemplateItemInput!
7833+
): CopyDataLibraryTemplateItemPayload
77557834
copySketch(
77567835
"""
77577836
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
@@ -8539,6 +8618,12 @@ type Mutation {
85398618
"""
85408619
input: DismissFailedJobInput!
85418620
): DismissFailedJobPayload
8621+
duplicateTableOfContentsItem(
8622+
"""
8623+
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
8624+
"""
8625+
input: DuplicateTableOfContentsItemInput!
8626+
): DuplicateTableOfContentsItemPayload
85428627
enableDownloadForEligibleLayers(
85438628
"""
85448629
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
@@ -14270,6 +14355,7 @@ type TableOfContentsItem implements Node {
1427014355
"""
1427114356
computedMetadata: JSON
1427214357
containedBy: [TableOfContentsItem]
14358+
copiedFromDataLibraryTemplateId: String
1427314359

1427414360
"""
1427514361
Reads a single `DataLayer` that is related to this `TableOfContentsItem`.

0 commit comments

Comments
 (0)