Skip to content

Commit a283e8b

Browse files
authored
add KnowledgeSourceUrl type (#203)
1 parent 46ca3af commit a283e8b

File tree

3 files changed

+52
-7
lines changed

3 files changed

+52
-7
lines changed

.changeset/salty-cameras-pump.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@team-plain/typescript-sdk': patch
3+
---
4+
5+
Add KnowledgeSourceUrl

src/graphql/fragments/knowledgeSourceParts.gql

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,24 @@ fragment KnowledgeSourceParts on KnowledgeSource {
1919
...ActorParts
2020
}
2121
}
22+
... on KnowledgeSourceUrl {
23+
id
24+
url
25+
type
26+
status {
27+
...IndexingStatusParts
28+
}
29+
createdAt {
30+
...DateTimeParts
31+
}
32+
createdBy {
33+
...ActorParts
34+
}
35+
updatedAt {
36+
...DateTimeParts
37+
}
38+
updatedBy {
39+
...ActorParts
40+
}
41+
}
2242
}

0 commit comments

Comments
 (0)