-
Notifications
You must be signed in to change notification settings - Fork 0
/
inkeep-api-sdl.graphql
285 lines (248 loc) · 4.79 KB
/
inkeep-api-sdl.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
type BotMessage implements ChatMessage {
id: ID!
content: String!
citations: [ChatCitation!]!
codeBlocks: [CodeBlock!]
}
type CodeBlock {
language: CodeLanguage!
code: String!
}
enum CodeLanguage {
SQL
PYTHON
UNDEFINED
}
type UserMessage implements ChatMessage {
id: ID!
content: String!
}
type ChatCitation {
citationNumber: Int!
title: String
url: String!
rootRecordId: ID
rootRecordType: RecordType
}
interface ChatMessage {
id: ID!
content: String!
}
enum ChatMode {
TURBO
AUTO
}
type ChatResult {
sessionId: ID!
message: BotMessage!
isEnd: Boolean!
postChatResultSignals: PostChatResultSignals
}
type PostChatResultSignals {
botAbleToAnswerGivenSources: Boolean
suggestedFollowupQuestions: [String!]
}
type ChatSession {
id: ID!
organizationId: String!
messages: [ChatMessage!]!
chatMode: ChatMode!
outputMode: OutputMode!
product: String
productVersion: String
isSharedSession: Boolean!
}
enum OutputMode {
DEFAULT
SQL
PYTHON
CODE
}
input ContinueChatResultInput {
messageInput: String!
sessionId: ID!
}
type DiscourseRecord implements SearchRootRecord {
id: ID!
url: String
title: String
preview: String
body: String
bodyHtml: String
categoryBreadcrumbs: [String!]!
createdAt: DateTime!
}
interface SearchRootRecord {
id: ID!
url: String
title: String
preview: String
}
"""Date with time (isoformat)"""
scalar DateTime
type DiscourseHit implements SearchHit {
id: ID!
rootRecord: DiscourseRecord!
hitOnRoot: Boolean!
url: String
title: String
preview: String
}
type DocumentationRecord implements SearchRootRecord {
id: ID!
url: String
title: String
preview: String
pathBreadcrumbs: [String!]
contentType: String!
topLevelHeadings: [DocumentationContentLevel!]!
firstContentPath: [DocumentationContentLevel!]!
firstContent: String!
}
type DocumentationContentLevel {
anchor: String
url: String
htmlTag: String!
content: String!
contentHtml: String!
}
type DocumentationHit implements SearchHit {
id: ID!
rootRecord: SearchRootRecord!
hitOnRoot: Boolean!
url: String
title: String
preview: String
pathHeadings: [DocumentationContentLevel!]!
content: DocumentationContentLevel!
}
type GitHubIssueRecord implements SearchRootRecord {
id: ID!
url: String
title: String
preview: String
body: String
state: GitHubIssueState!
createdAt: DateTime!
commentsWithMostPositiveReactions: [GitHubIssueComment!]!
reactions: [GitHubReaction!]!
}
enum GitHubIssueState {
CLOSED
OPEN
}
type GitHubIssueComment {
id: ID!
url: String!
body: String
commentDate: DateTime!
reactions: [GitHubReaction!]!
}
type GitHubReaction {
reactionType: ReactionType!
count: Int!
}
enum ReactionType {
PLUS_ONE
MINUS_ONE
LAUGH
CONFUSED
HEART
HOORAY
ROCKET
EYES
}
type GitHubIssueHit implements SearchHit {
id: ID!
rootRecord: GitHubIssueRecord!
hitOnRoot: Boolean!
url: String
title: String
preview: String
}
input NewSessionChatResultInput {
messageInput: String!
organizationId: ID = null
integrationId: ID = null
chatMode: ChatMode = AUTO
outputMode: OutputMode = DEFAULT
product: String = null
productVersion: String = null
}
enum RecordType {
DOCUMENTATION
GITHUB_ISSUE
DISCOURSE
STACKOVERFLOW
}
input SearchFiltersInput {
product: String = null
productVersion: String = null
sources: [RecordType!] = null
limit: Int = null
}
interface SearchHit {
id: ID!
rootRecord: SearchRootRecord!
hitOnRoot: Boolean!
url: String
title: String
preview: String
}
input SearchInput {
searchQuery: String!
organizationId: ID = null
integrationId: ID = null
searchMode: SearchMode = null
filters: SearchFiltersInput = null
}
enum SearchMode {
AUTO
KEYWORD
INTELLIGENT
}
type SearchResult {
searchHits: [SearchHit!]!
searchQuery: String!
}
type StackOverflowRecord implements SearchRootRecord {
id: ID!
url: String
title: String
preview: String
body: String
bodyHtml: String
tags: [String!]!
createdAt: DateTime!
topVotedAnswer: StackOverflowAnswer
markedAsCorrectAnswer: StackOverflowAnswer
score: Int!
}
type StackOverflowAnswer {
id: ID!
url: String!
score: Int!
content: String!
contentHtml: String!
}
type StackOverflowHit implements SearchHit {
id: ID!
rootRecord: StackOverflowRecord!
hitOnRoot: Boolean!
url: String
title: String
preview: String
}
type Query {
search(searchInput: SearchInput!): SearchResult!
getSearchRootRecords(ids: [ID!]!): [SearchRootRecord!]!
getChatSession(id: ID!): ChatSession!
hello: String
}
type Mutation {
copyChatSession(sessionId: ID!, isSharedSession: Boolean!): ID!
}
type Subscription {
continueChatResult(input: ContinueChatResultInput!): ChatResult!
newSessionChatResult(input: NewSessionChatResultInput!): ChatResult!
}