https://dagster.io/ logo
Title
s

Slackbot

10/28/2021, 5:32 PM
This message was deleted.
d

daniel

10/28/2021, 5:34 PM
Hi navneet - I wouldn't expect much to happen that's visible in dagit, but i would expect the pod for that location to shut down and restart
what are you expecting to happen that is not happening?
n

Navneet Sajwan

10/28/2021, 5:40 PM
Thanks for prompt response daniel 🙂, Assuming that I am using it correctly. • Normally, when you press play button in playground, it changes icon to imply that mutation/query is being processed. It's not happening with this mutation. • I was looking for some sort of response to appear in playground. • Most importantly, I don't see the pod restarting in argocd.
d

daniel

10/28/2021, 5:43 PM
oh i see, this is a graphql playground question
are you missing a closing bracket at the end?
# Write your query or mutation here
mutation repositoryShutdown {
  shutdownRepositoryLocation(repositoryLocationName:  "example-user-code-0") {
     ... on PythonError {
      message
    }
    ... on RepositoryLocationNotFound {
      message
    }
  }
}
n

Navneet Sajwan

10/28/2021, 5:52 PM
That was it 😅. Thanks.