Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions request/addTag.query.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
mutation AddTag($input: AddTagInput!) {
addTags(input: $input) {
tags {
tagType
tagId
name
isOxTag
displayName
createdBy
}
}
}
1 change: 1 addition & 0 deletions request/addTag.variables.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"input":{"tagsInput":[{"displayName":"neatsun","name":"neatsun","tagType":"simple"}]}}
13 changes: 13 additions & 0 deletions request/getAllTags.query.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
query GetAllTags {
getAllTags {
tags {
tagId
name
displayName
tagType
createdBy
isOxTag
}
}
}

1 change: 1 addition & 0 deletions request/getAllTags.variables.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
Loading