@@ -1044,6 +1044,43 @@ type CopyAppearancePayload {
1044
1044
query : Query
1045
1045
}
1046
1046
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
+
1047
1084
"""All input for the `copySketchFolder` mutation."""
1048
1085
input CopySketchFolderInput {
1049
1086
"""
@@ -2642,6 +2679,7 @@ type DataSource implements Node {
2642
2679
"""The method to use when ordering `DataLayer`."""
2643
2680
orderBy : [DataLayersOrderBy ! ] = [PRIMARY_KEY_ASC ]
2644
2681
): DataLayersConnection !
2682
+ dataLibraryTemplateId : String
2645
2683
2646
2684
"""
2647
2685
Raster-DEM only. The encoding used by this source. Mapbox Terrain RGB is used by default
@@ -2912,6 +2950,7 @@ input DataSourceInput {
2912
2950
coordinates : [BigFloat ]
2913
2951
createdAt : Datetime
2914
2952
createdBy : Int
2953
+ dataLibraryTemplateId : String
2915
2954
2916
2955
"""
2917
2956
Raster-DEM only. The encoding used by this source. Mapbox Terrain RGB is used by default
@@ -5032,6 +5071,42 @@ type DownloadOption {
5032
5071
url : String
5033
5072
}
5034
5073
5074
+ """All input for the `duplicateTableOfContentsItem` mutation."""
5075
+ input DuplicateTableOfContentsItemInput {
5076
+ """
5077
+ An arbitrary string value with no semantic meaning. Will be included in the
5078
+ payload verbatim. May be used to track mutations by the client.
5079
+ """
5080
+ clientMutationId : String
5081
+ itemId : Int
5082
+ }
5083
+
5084
+ """The output of our `duplicateTableOfContentsItem` mutation."""
5085
+ type DuplicateTableOfContentsItemPayload {
5086
+ """
5087
+ The exact same `clientMutationId` that was provided in the mutation input,
5088
+ unchanged and unused. May be used by a client to track mutations.
5089
+ """
5090
+ clientMutationId : String
5091
+
5092
+ """
5093
+ Reads a single `DataLayer` that is related to this `TableOfContentsItem`.
5094
+ """
5095
+ dataLayer : DataLayer
5096
+
5097
+ """
5098
+ Our root query field type. Allows us to run any query from our mutation payload.
5099
+ """
5100
+ query : Query
5101
+ tableOfContentsItem : TableOfContentsItem
5102
+
5103
+ """An edge for our `TableOfContentsItem`. May be used by Relay 1."""
5104
+ tableOfContentsItemEdge (
5105
+ """The method to use when ordering `TableOfContentsItem`."""
5106
+ orderBy : [TableOfContentsItemsOrderBy ! ] = [PRIMARY_KEY_ASC ]
5107
+ ): TableOfContentsItemsEdge
5108
+ }
5109
+
5035
5110
scalar Email
5036
5111
5037
5112
"""
@@ -7752,6 +7827,12 @@ type Mutation {
7752
7827
"""
7753
7828
input : CopyAppearanceInput !
7754
7829
): CopyAppearancePayload
7830
+ copyDataLibraryTemplateItem (
7831
+ """
7832
+ The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
7833
+ """
7834
+ input : CopyDataLibraryTemplateItemInput !
7835
+ ): CopyDataLibraryTemplateItemPayload
7755
7836
copySketch (
7756
7837
"""
7757
7838
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
@@ -8539,6 +8620,12 @@ type Mutation {
8539
8620
"""
8540
8621
input : DismissFailedJobInput !
8541
8622
): DismissFailedJobPayload
8623
+ duplicateTableOfContentsItem (
8624
+ """
8625
+ The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
8626
+ """
8627
+ input : DuplicateTableOfContentsItemInput !
8628
+ ): DuplicateTableOfContentsItemPayload
8542
8629
enableDownloadForEligibleLayers (
8543
8630
"""
8544
8631
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
@@ -14270,6 +14357,7 @@ type TableOfContentsItem implements Node {
14270
14357
"""
14271
14358
computedMetadata : JSON
14272
14359
containedBy : [TableOfContentsItem ]
14360
+ copiedFromDataLibraryTemplateId : String
14273
14361
14274
14362
"""
14275
14363
Reads a single `DataLayer` that is related to this `TableOfContentsItem`.
0 commit comments