can someone help me troubleshoot why I'm getting a...
# ask-community
c
can someone help me troubleshoot why I'm getting an Internal Server Error when I try to execute this GraphQL mutation?
Copy code
mutation(
  $repositoryLocationName: String!
  $parentRunId: String!
  $rootRunId: String!
) {
  launchRunReexecution(
    executionParams: {
      selector: {
        repositoryName: "__repository__"
        repositoryLocationName: $repositoryLocationName
      }
      executionMetadata: {
        rootRunId: $rootRunId
        parentRunId: $parentRunId
        tags: [{ key: "dagster/is_resume_retry", value: "true" }]
      }
    }
    reexecutionParams: { parentRunId: $parentRunId, strategy: FROM_FAILURE }
  ) {
    __typename
    ... on PythonError {
      message
      className
      stack
    }
  }
}
🤖 1
the error doesn't give me any more information than this
Copy code
{
  "error": {
    "data": {
      "launchRunReexecution": {
        "__typename": "PythonError",
        "message": "Internal Server Error (Trace ID: 5387314698807084639)",
        "className": "Exception",
        "stack": []
      }
    }
  }
}
and the playground linter isn't flagging any issues
d
I don't think you need executionParams set if reexecutionParams is set - try that?
c
wow nice
the docs made it look like it was required
d
ah which docs? we can fix that up
c
actually maybe I just misread them, the graphql docs
I saw some
!
fields under that and figured they were required
but they're only required if you include that param