-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
210 lines (183 loc) · 4.17 KB
/
schema.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
"""
Direct the client to resolve this field locally, either from the cache or local resolvers.
"""
directive @client(
"""
When true, the client will never use the cache for this value. See
https://www.apollographql.com/docs/react/essentials/local-state/#forcing-resolvers-with-clientalways-true
"""
always: Boolean
) on FIELD | FRAGMENT_DEFINITION | INLINE_FRAGMENT
"""
Export this locally resolved field as a variable to be used in the remainder of this query. See
https://www.apollographql.com/docs/react/essentials/local-state/#using-client-fields-as-variables
"""
directive @export(
"""The variable name to export this field as."""
as: String!
) on FIELD
"""
Specify a custom store key for this result. See
https://www.apollographql.com/docs/react/advanced/caching/#the-connection-directive
"""
directive @connection(
"""Specify the store key."""
key: String!
"""
An array of query argument names to include in the generated custom store key.
"""
filter: [String!]
) on FIELD
type Query {
hello: String!
version: String!
node(id: ID!): Node
me: User
documentSource(id: ID!): DocumentSource
documentSources: [DocumentSource!]!
search(query: String!): SearchResult!
question(query: String!): QuestionResponse!
relatedDocuments(id: ID!): [Document!]!
}
"""
A date-time string at UTC, such as 2007-12-03T10:15:30Z, compliant with the `date-time` format outlined in section 5.6 of the RFC 3339 profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar.
"""
scalar DateTime
"""
A field whose value conforms to the standard internet email address format as specified in RFC822: https://www.w3.org/Protocols/rfc822/.
"""
scalar EmailAddress
"""
A field whose value is a ISBN-10 or ISBN-13 number: https://en.wikipedia.org/wiki/International_Standard_Book_Number.
"""
scalar ISBN
scalar ISSN
scalar DOI
scalar PubMedID
scalar PMCID
"""
A field whose value conforms to the standard URL format as specified in RFC3986: https://www.ietf.org/rfc/rfc3986.txt.
"""
scalar URL
interface Node {
id: ID!
}
type PageInfo {
endCursor: String
hasNextPage: Boolean!
hasPreviousPage: Boolean!
startCursor: String
}
type User {
id: ID!
imageURL: URL!
}
type DocumentSource implements Node {
id: ID!
name: String!
description: String!
url: URL!
}
type Author {
name: String!
email: EmailAddress
}
type Image {
url: URL!
description: String
provider: String
license: String
}
type JournalReference {
title: String
volume: String
issue: String
start: String
end: String
}
enum DocumentType {
GUIDANCE
OVERVIEW
PUBLICATION
BOOK
ADMINISTRATION
OTHER
UNKNOWN
}
type Document implements Node {
id: ID!
alternateDescription: String
alternateTitle: [String!]!
authors: [Author!]!
content: [String!]!
dateIndexed: DateTime!
datePublished: DateTime
description: String
directURL: URL!
doi: DOI
fileName: String
images: [Image!]!
isbn: ISBN
issn: ISSN
journalReference: JournalReference
keywords: [String!]!
language: String!
meshHeadings: [String!]!
meshQualifiers: [String!]!
pmcID: PMCID
publisher: String
pubMedID: PubMedID
rights: String
source: DocumentSource!
title: String!
type: DocumentType!
url: URL!
}
type DocumentEdge {
cursor: String!
node: Document
}
type DocumentConnection {
edges: [DocumentEdge]
pageInfo: PageInfo!
}
type SearchResult {
documents(first: Int, after: String, last: Int, before: String): DocumentConnection!
infobox: Infobox
}
type InfoboxDetails {
cause: String
complications: String
deaths: String
diagnosis: String
duration: String
frequency: String
name: String
prevention: String
symptoms: String
treatment: String
onset: String
bioavailability: String
boiling_point: String
density: String
excretion: String
melting_high: String
melting_point: String
metabolism: String
metabolites: String
pregnancy_category: String
protein_bound: String
routes_of_administration: String
solubility: String
tradename: String
}
type Infobox {
aliases: [String!]!
extext: String
images: [URL!]!
infobox: InfoboxDetails!
}
type QuestionResponse {
answer: String!
confidence: Float!
}