Swirrl / cubiql

CubiQL: A GraphQL service for querying multidimensional Linked Data Cubes
Eclipse Public License 1.0
41 stars 2 forks source link

Allow reference areas to be filtered by name #156

Open lkitching opened 6 years ago

lkitching commented 6 years ago

Allow observations to be filtered by (possibly partial) matches on the reference area label e.g.

 observations(dimensions: {reference_area: {label: "E01004803"}}) { ... }

regular expressions for labels could also be supported e.g.

observations(dimensions: {reference_area: {label_regex: "E0.*"}}) { ... }

along with matching by URI (the current behaviour)

observations(dimensions: {reference_area: {uri: "http://statistics.data.gov.uk/id/statistical-geography/E01004803"}}) { ... }