This CTF like the previous one too has some mutations in it so likely we have to play with mutations. It's always a good idea to give introspection query a try with GraphQL voyager which retrieved following result: We can see something different in this graph i.e attachments. That being said lets explore the documentation to carve a query that returns all the data available on the endpoint query { user { edges { node { id username bugs { edges { node { id private reporterId attachments { edges { node { id bugId filename } } } } } } } } } } This query returns all the data as follows.
My views, thoughts & experiences.