Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
underbluewaters committed Nov 17, 2024
1 parent d9485d3 commit 2bd0a2a
Show file tree
Hide file tree
Showing 24 changed files with 28,473 additions and 21,505 deletions.
86 changes: 86 additions & 0 deletions packages/api/generated-schema.gql
Original file line number Diff line number Diff line change
Expand Up @@ -1044,6 +1044,43 @@ type CopyAppearancePayload {
query: Query
}

"""All input for the `copyDataLibraryTemplateItem` mutation."""
input CopyDataLibraryTemplateItemInput {
"""
An arbitrary string value with no semantic meaning. Will be included in the
payload verbatim. May be used to track mutations by the client.
"""
clientMutationId: String
projectSlug: String
templateId: String
}

"""The output of our `copyDataLibraryTemplateItem` mutation."""
type CopyDataLibraryTemplateItemPayload {
"""
The exact same `clientMutationId` that was provided in the mutation input,
unchanged and unused. May be used by a client to track mutations.
"""
clientMutationId: String

"""
Reads a single `DataLayer` that is related to this `TableOfContentsItem`.
"""
dataLayer: DataLayer

"""
Our root query field type. Allows us to run any query from our mutation payload.
"""
query: Query
tableOfContentsItem: TableOfContentsItem

"""An edge for our `TableOfContentsItem`. May be used by Relay 1."""
tableOfContentsItemEdge(
"""The method to use when ordering `TableOfContentsItem`."""
orderBy: [TableOfContentsItemsOrderBy!] = [PRIMARY_KEY_ASC]
): TableOfContentsItemsEdge
}

"""All input for the `copySketchFolder` mutation."""
input CopySketchFolderInput {
"""
Expand Down Expand Up @@ -5032,6 +5069,42 @@ type DownloadOption {
url: String
}

"""All input for the `duplicateTableOfContentsItem` mutation."""
input DuplicateTableOfContentsItemInput {
"""
An arbitrary string value with no semantic meaning. Will be included in the
payload verbatim. May be used to track mutations by the client.
"""
clientMutationId: String
itemId: Int
}

"""The output of our `duplicateTableOfContentsItem` mutation."""
type DuplicateTableOfContentsItemPayload {
"""
The exact same `clientMutationId` that was provided in the mutation input,
unchanged and unused. May be used by a client to track mutations.
"""
clientMutationId: String

"""
Reads a single `DataLayer` that is related to this `TableOfContentsItem`.
"""
dataLayer: DataLayer

"""
Our root query field type. Allows us to run any query from our mutation payload.
"""
query: Query
tableOfContentsItem: TableOfContentsItem

"""An edge for our `TableOfContentsItem`. May be used by Relay 1."""
tableOfContentsItemEdge(
"""The method to use when ordering `TableOfContentsItem`."""
orderBy: [TableOfContentsItemsOrderBy!] = [PRIMARY_KEY_ASC]
): TableOfContentsItemsEdge
}

scalar Email

"""
Expand Down Expand Up @@ -7752,6 +7825,12 @@ type Mutation {
"""
input: CopyAppearanceInput!
): CopyAppearancePayload
copyDataLibraryTemplateItem(
"""
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
"""
input: CopyDataLibraryTemplateItemInput!
): CopyDataLibraryTemplateItemPayload
copySketch(
"""
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
Expand Down Expand Up @@ -8539,6 +8618,12 @@ type Mutation {
"""
input: DismissFailedJobInput!
): DismissFailedJobPayload
duplicateTableOfContentsItem(
"""
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
"""
input: DuplicateTableOfContentsItemInput!
): DuplicateTableOfContentsItemPayload
enableDownloadForEligibleLayers(
"""
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
Expand Down Expand Up @@ -14270,6 +14355,7 @@ type TableOfContentsItem implements Node {
"""
computedMetadata: JSON
containedBy: [TableOfContentsItem]
copiedFromDataLibraryTemplateId: String

"""
Reads a single `DataLayer` that is related to this `TableOfContentsItem`.
Expand Down
Loading

0 comments on commit 2bd0a2a

Please sign in to comment.