Add support for reactions plugin (#180)
This commit is contained in:
18
source/plugins/reactions/queries/reactions.graphql
Normal file
18
source/plugins/reactions/queries/reactions.graphql
Normal file
@@ -0,0 +1,18 @@
|
||||
query ReactionsDefault {
|
||||
user(login: "$login") {
|
||||
login
|
||||
$type($after first: 100, orderBy: {field: UPDATED_AT, direction: DESC}) {
|
||||
edges {
|
||||
cursor
|
||||
node {
|
||||
createdAt
|
||||
reactions(last: 100, orderBy: {field: CREATED_AT, direction: DESC}) {
|
||||
nodes {
|
||||
content
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user