Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Data library #834

Merged
merged 5 commits into from
Nov 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
88 changes: 88 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 @@ -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
Loading
Loading