Skip to content

Product map

Olivier Wouters edited this page Jun 23, 2022 · 1 revision

This the graphQL API request to get all product of the province of Luxembourg

{
  products(query: {
    owner: {
      place: {
        withinAreas_in: {code: "BE-WLX"}
      }
    }
  }) {
    name
    owner {
      place {
        withinAreas {
          types
          code
          name
        }
      }
    }
  }
}
Clone this wiki locally