You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sending a GraphQL query is currently a POST /graphql request, so even if the query does not perform any mutation, the CLI is prompting the user to confirm the request
? Do you want to allow the following request:
<unknown endpoint>
route: POST /graphql
query: query($htmlUrl: URI!) {
resource(url: $htmlUrl) {
... on PullRequest {
state
author {
login
}
files(first:2) {
nodes {
path
}
}
commits(last: 1) {
nodes {
commit {
oid
checkSuites(first: 100) {
nodes {
checkRuns(first: 100) {
nodes {
name
conclusion
permalink
}
}
}
}
status {
state
contexts {
state
targetUrl
description
context
}
}
}
}
}
}
}
}
variables: [object Object]
…
❯ yes
no
yes, for all "POST /graphql" requests
yes, for all requests
The text was updated successfully, but these errors were encountered:
Sending a GraphQL query is currently a
POST /graphql
request, so even if the query does not perform any mutation, the CLI is prompting the user to confirm the requestThe text was updated successfully, but these errors were encountered: