I've been trying to use the graphQL explorer to mockup an API call so that I can iterate over projects and export their details. I've attempted several variations on formatting the searchString parameter and keep getting an error:
"message": "Exception while fetching data (/projects_search) : $: Failed to convert argument value",
Has anyone been able to get this to work? Example call below
query projects_search {
projects_search(containerId:"ari:cloud:townsquare:<cloudid>:workspace/<workspaceid>"
, searchString:"test"){
pageInfo {
startCursor
endCursor
}
}
}