Is there some way I can use the GraphQL API to onl...
# getting-started
f
Is there some way I can use the GraphQL API to only get things in a specific environment? I have tried this but it does not work:
Copy code
{
  searchAcrossEntities(input:{query:"", count: 999, types: [DATASET], filters: [{field: "environment", value: "EI"}]}) {
    count
    searchResults{
      entity {
        urn
        type
      }
    }
  }
}
b
should be
Copy code
{field: "origin", value: "PROD"}
instead of environment
f
Thanks, worked