-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgrid.graphql
75 lines (70 loc) · 1.92 KB
/
grid.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
type Grid {
"The list of concepts and any data on the relationship between this DQS and other permitted concepts."
associationDetails: JSON
"The additional attribute to the grid."
additionalAttribute: JSON
"The unique concept id assigned to the grid."
conceptId: String!
"The contact mechanisms for this grid"
contactMechanisms: JSON
"The description for this grid"
description: String
"The dimension size for this grid"
dimensionSize: JSON
"The definition of the grid"
gridDefinition: JSON
"The expanded or long name related to the grid name."
longName: String
"The metadata date for this record"
metadataDate: JSON
"The metadata specification for this grid"
metadataSpecification: JSON
"The name for this grid"
name: String
"The organization that this grid belongs to"
organization: JSON
"The urls related to this grid"
relatedUrls: JSON
"The resolution for this grid"
resolution: JSON
"The grid's spatial extent"
spatialExtent: JSON
"The records scale extent"
scaleExtent: JSON
"The version for this grid record"
version: String
}
type GridList {
"The number of hits for a given search."
count: Int
"Cursor that points to the/a specific position in a list of requested records."
cursor: String
"The list of grid search results."
items: [Grid]
}
input GridsInput {
"The unique concept id assigned to the grid."
conceptId: [String]
"Cursor that points to the/a specific position in a list of requested records."
cursor: String
"The number of grids requested by the user."
limit: Int
"Zero based offset of individual results."
offset: Int
}
input GridInput {
"The unique concept id assigned to the grid."
conceptId: String!
}
type Query {
grids(
"Grids query parameters"
params: GridsInput
): GridList!
grid(
"Grid query parameters"
params: GridInput
"The unique concept id assigned to the grid."
conceptId: String
): Grid
}