-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdataQualitySummary.graphql
53 lines (48 loc) · 1.57 KB
/
dataQualitySummary.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
type DataQualitySummary {
"The list of concepts and any data on the relationship between this DQS and other permitted concepts."
associationDetails: JSON
"The unique concept id assigned to the DQS."
conceptId: String!
"The legacy services identifier that was assigned to this DQS."
id: String!
"The name associated with the quality summary of the data set."
name: String!
"The native id to set on the DQS."
nativeId: String
"contains the human readable summary of the quality of the data set."
summary: String!
}
type DataQualitySummaryList {
"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 DataQualitySummary search results."
items: [DataQualitySummary]
}
input DataQualitySummariesInput {
"The unique concept-id assigned to the DQS."
conceptId: [String]
"Cursor that points to the/a specific position in a list of requested records."
cursor: String
"The number of data-quality-summaries requested by the user."
limit: Int
"Zero based offset of individual results."
offset: Int
}
input DataQualitySummaryInput {
"The unique concept id assigned to the DQS."
conceptId: String!
}
type Query {
dataQualitySummaries(
"DataQualitySummary query parameters"
params: DataQualitySummariesInput
): DataQualitySummaryList!
dataQualitySummary(
"DataQualitySummary query parameters"
params: DataQualitySummaryInput
"The unique concept id assigned to the DataQualitySummary."
conceptId: String
): DataQualitySummary
}