I am trying to run simple query
{
repository(name: "graphiql", owner: "graphql") {
labels(first: 10, query: "plugin proposal") {
totalCount
edges {
node {
name
color
}
}
}
}
}
Theoretically it should return one node, but it returns all partial matches:
{
"data": {
"repository": {
"labels": {
"totalCount": 3,
"edges": [
{
"node": {
"name": "plugin proposal",
"color": "fbca04"
}
},
{
"node": {
"name": "proposal",
"color": "1db4e2"
}
},
{
"node": {
"name": "potential plugin",
"color": "efd1ac"
}
}
]
}
}
Could someone point me to where I could get more info on how the query string must be composed?