Skip to content

Commit

Permalink
First draft of working system
Browse files Browse the repository at this point in the history
  • Loading branch information
underbluewaters committed Nov 17, 2024
1 parent d9df296 commit eccfc15
Show file tree
Hide file tree
Showing 15 changed files with 92,478 additions and 91,842 deletions.
88 changes: 88 additions & 0 deletions packages/api/generated-schema-clean.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 @@ -2642,6 +2679,7 @@ type DataSource implements Node {
"""The method to use when ordering `DataLayer`."""
orderBy: [DataLayersOrderBy!] = [PRIMARY_KEY_ASC]
): DataLayersConnection!
dataLibraryTemplateId: String

"""
Raster-DEM only. The encoding used by this source. Mapbox Terrain RGB is used by default
Expand Down Expand Up @@ -2912,6 +2950,7 @@ input DataSourceInput {
coordinates: [BigFloat]
createdAt: Datetime
createdBy: Int
dataLibraryTemplateId: String

"""
Raster-DEM only. The encoding used by this source. Mapbox Terrain RGB is used by default
Expand Down Expand Up @@ -5032,6 +5071,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 +7827,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 +8620,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 +14357,7 @@ type TableOfContentsItem implements Node {
"""
computedMetadata: JSON
containedBy: [TableOfContentsItem]
copiedFromDataLibraryTemplateId: String

"""
Reads a single `DataLayer` that is related to this `TableOfContentsItem`.
Expand Down
2 changes: 2 additions & 0 deletions packages/api/generated-schema.gql
Original file line number Diff line number Diff line change
Expand Up @@ -2679,6 +2679,7 @@ type DataSource implements Node {
"""The method to use when ordering `DataLayer`."""
orderBy: [DataLayersOrderBy!] = [PRIMARY_KEY_ASC]
): DataLayersConnection!
dataLibraryTemplateId: String

"""
Raster-DEM only. The encoding used by this source. Mapbox Terrain RGB is used by default
Expand Down Expand Up @@ -2949,6 +2950,7 @@ input DataSourceInput {
coordinates: [BigFloat]
createdAt: Datetime
createdBy: Int
dataLibraryTemplateId: String

"""
Raster-DEM only. The encoding used by this source. Mapbox Terrain RGB is used by default
Expand Down
Loading

0 comments on commit eccfc15

Please sign in to comment.