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
While using the LaunchFind function in the GraphiQL application, I am unable to find 'launch_success' or 'land_success'. In the documentation, they are listed as being of String type, but in the API they are of Boolean type.
I've tried setting my query variable to a String type: "true" or "false". No errors are thrown, however the query returns empty.
I expect to be able to use the LaunchFind function on these two fields: 'launch_success' and 'land_success', however, I'm unable to because the default type defs are incorrect.
While using the LaunchFind function in the GraphiQL application, I am unable to find 'launch_success' or 'land_success'. In the documentation, they are listed as being of String type, but in the API they are of Boolean type.
I've tried setting my query variable to a String type: "true" or "false". No errors are thrown, however the query returns empty.
I expect to be able to use the LaunchFind function on these two fields: 'launch_success' and 'land_success', however, I'm unable to because the default type defs are incorrect.
`
query launches($success: String) {
launches(find: {launch_success: $success}) {
id
}
}
{
"success": "true"
}
`
The text was updated successfully, but these errors were encountered: