diff --git a/app/.env.development b/app/.env.development
index 7ee7c2adce..88f77d6e2b 100644
--- a/app/.env.development
+++ b/app/.env.development
@@ -2,8 +2,8 @@ DATABASE_URL=postgres://postgres:password@localhost:5432/visualization_tool
ENDPOINT=sparql+https://lindas-cached.cluster.ldbar.ch/query
SPARQL_GEO_ENDPOINT=https://geo.ld.admin.ch/query
GRAPHQL_ENDPOINT=/api/graphql
-WHITELISTED_DATA_SOURCES=["Prod", "Prod-uncached", "Int", "Int-uncached", "Test", "Test-uncached"]
+WHITELISTED_DATA_SOURCES=["Prod", "Prod-uncached", "Int", "Int-uncached", "Test", "Test-uncached", "LINDASnext-Prod", "LINDASnext-Prod-uncached", "LINDASnext-Int", "LINDASnext-Int-uncached", "LINDASnext-Test", "LINDASnext-Test-uncached"]
NEXT_PUBLIC_VECTOR_TILE_URL=https://world.vectortiles.geo.admin.ch
NEXT_PUBLIC_MAPTILER_STYLE_KEY=123
ADFS_PROFILE_URL=https://www.myaccount-r.eiam.admin.ch/
-NEXTAUTH_URL=https://localhost:3000
\ No newline at end of file
+NEXTAUTH_URL=https://localhost:3000
diff --git a/app/browse/lib/use-redirect-to-latest-cube.spec.tsx b/app/browse/lib/use-redirect-to-latest-cube.spec.tsx
index c0f4725e5e..3d6bd034b3 100644
--- a/app/browse/lib/use-redirect-to-latest-cube.spec.tsx
+++ b/app/browse/lib/use-redirect-to-latest-cube.spec.tsx
@@ -48,7 +48,7 @@ describe("use redirect to versioned cube", () => {
datasetIri,
dataSource: {
type: "sparql",
- url: "https://lindas.int.cz-aws.net/query",
+ url: "https://int.lindas.admin.ch/query",
},
})
);
diff --git a/app/components/debug-search.tsx b/app/components/debug-search.tsx
index 60b8ded6fb..12b78654ed 100644
--- a/app/components/debug-search.tsx
+++ b/app/components/debug-search.tsx
@@ -190,7 +190,7 @@ const Search = ({
export const DebugSearch = () => {
const [includeDrafts, setIncludeDrafts] = useState(false);
const [sourceUrl, setSourceUrl] = useState(
- "https://lindas.int.cz-aws.net/query"
+ "https://int.lindas.admin.ch/query"
);
const [customSearch, setCustomSearch] = useState("");
@@ -225,7 +225,7 @@ export const DebugSearch = () => {
onChange={(ev) => setSourceUrl(ev.target.value)}
value={sourceUrl}
>
-
+
{
variables: {
locale: "en",
sourceType: "sparql",
- sourceUrl: "https://lindas.int.cz-aws.net/query",
+ sourceUrl: "https://int.lindas.admin.ch/query",
filters: [
sharedComponents
? {
diff --git a/app/configurator/components/add-dataset-drawer.mock.ts b/app/configurator/components/add-dataset-drawer.mock.ts
index 335710fef1..7cd75acc52 100644
--- a/app/configurator/components/add-dataset-drawer.mock.ts
+++ b/app/configurator/components/add-dataset-drawer.mock.ts
@@ -5,7 +5,7 @@ export const photovoltaikChartStateMock: ConfiguratorStateConfiguringChart = {
state: "CONFIGURING_CHART",
dataSource: {
type: "sparql",
- url: "https://lindas-cached.int.cz-aws.net/query",
+ url: "https://lindas-cached.int.cluster.ldbar.ch/query",
},
layout: {
activeField: "y",
diff --git a/app/configurator/configurator-state/mocks.ts b/app/configurator/configurator-state/mocks.ts
index d64bd230d8..02372cbd7f 100644
--- a/app/configurator/configurator-state/mocks.ts
+++ b/app/configurator/configurator-state/mocks.ts
@@ -104,7 +104,7 @@ export const configStateMock = {
state: "CONFIGURING_CHART",
dataSource: {
type: "sparql",
- url: "https://lindas.test.cz-aws.net/query",
+ url: "https://test.lindas.admin.ch/query",
},
layout: {
type: "tab",
diff --git a/app/domain/data-source/constants.ts b/app/domain/data-source/constants.ts
index 1edf2dbcba..4ba44f9a3d 100644
--- a/app/domain/data-source/constants.ts
+++ b/app/domain/data-source/constants.ts
@@ -23,29 +23,73 @@ export const SOURCE_OPTIONS = [
supportsCachingPerCubeIri: true,
},
{
- value: "sparql+https://lindas-cached.int.cz-aws.net/query",
+ value: "sparql+https://lindas-cached.int.cluster.ldbar.ch/query",
label: "Int",
+ url: "https://lindas-cached.int.cluster.ldbar.ch/query",
+ isTrusted: false,
+ supportsCachingPerCubeIri: true,
+ },
+ {
+ value: "sparql+https://int.lindas.admin.ch/query",
+ label: "Int-uncached",
+ url: "https://int.lindas.admin.ch/query",
+ isTrusted: false,
+ supportsCachingPerCubeIri: true,
+ },
+ {
+ value: "sparql+https://lindas-cached.test.cluster.ldbar.ch/query",
+ label: "Test",
+ url: "https://lindas-cached.test.cluster.ldbar.ch/query",
+ isTrusted: false,
+ supportsCachingPerCubeIri: true,
+ },
+ {
+ value: "sparql+https://test.lindas.admin.ch/query",
+ label: "Test-uncached",
+ url: "https://test.lindas.admin.ch/query",
+ isTrusted: false,
+ supportsCachingPerCubeIri: true,
+ },
+
+ // For LINDASnext
+ {
+ value: "sparql+https://lindas-cached.cz-aws.net/query",
+ label: "LINDASnext-Prod",
+ url: "https://lindas-cached.cz-aws.net/query",
+ isTrusted: false,
+ supportsCachingPerCubeIri: true,
+ },
+ {
+ value: "sparql+https://lindas.cz-aws.net/query",
+ label: "LINDASnext-Prod-uncached",
+ url: "https://lindas.cz-aws.net/query",
+ isTrusted: false,
+ supportsCachingPerCubeIri: true,
+ },
+ {
+ value: "sparql+https://lindas-cached.int.cz-aws.net/query",
+ label: "LINDASnext-Int",
url: "https://lindas-cached.int.cz-aws.net/query",
isTrusted: false,
supportsCachingPerCubeIri: true,
},
{
value: "sparql+https://lindas.int.cz-aws.net/query",
- label: "Int-uncached",
+ label: "LINDASnext-Int-uncached",
url: "https://lindas.int.cz-aws.net/query",
isTrusted: false,
supportsCachingPerCubeIri: true,
},
{
value: "sparql+https://lindas-cached.test.cz-aws.net/query",
- label: "Test",
+ label: "LINDASnext-Test",
url: "https://lindas-cached.test.cz-aws.net/query",
isTrusted: false,
supportsCachingPerCubeIri: true,
},
{
value: "sparql+https://lindas.test.cz-aws.net/query",
- label: "Test-uncached",
+ label: "LINDASnext-Test-uncached",
url: "https://lindas.test.cz-aws.net/query",
isTrusted: false,
supportsCachingPerCubeIri: true,
diff --git a/app/domain/data-source/index.spec.ts b/app/domain/data-source/index.spec.ts
index e1b529fe2e..3305067873 100644
--- a/app/domain/data-source/index.spec.ts
+++ b/app/domain/data-source/index.spec.ts
@@ -100,7 +100,7 @@ describe("datasource state hook", () => {
expect(getState()).toEqual({
type: "sparql",
- url: "https://lindas-cached.test.cz-aws.net/query",
+ url: "https://lindas-cached.test.cluster.ldbar.ch/query",
});
expect(setURLParam).toHaveBeenCalledWith("dataSource", "Test");
});
@@ -113,7 +113,7 @@ describe("datasource state hook", () => {
expect(getState()).toEqual({
type: "sparql",
- url: "https://lindas-cached.test.cz-aws.net/query",
+ url: "https://lindas-cached.test.cluster.ldbar.ch/query",
});
});
diff --git a/app/pages/_pivot.tsx b/app/pages/_pivot.tsx
index c4f1f4de1a..052e172d2c 100644
--- a/app/pages/_pivot.tsx
+++ b/app/pages/_pivot.tsx
@@ -36,7 +36,7 @@ const Card = styled(MUICard)({
});
const intDatasource = {
- sourceUrl: "https://lindas-cached.int.cz-aws.net/query",
+ sourceUrl: "https://lindas-cached.int.cluster.ldbar.ch/query",
sourceType: "sparql",
};
diff --git a/app/test/__fixtures/config/int/bathing-water-quality-hierarchie.json b/app/test/__fixtures/config/int/bathing-water-quality-hierarchie.json
index 749663ab70..7db20bbe1f 100644
--- a/app/test/__fixtures/config/int/bathing-water-quality-hierarchie.json
+++ b/app/test/__fixtures/config/int/bathing-water-quality-hierarchie.json
@@ -17,7 +17,7 @@
},
"dataSet": "https://environment.ld.admin.ch/foen/ubd0104/11",
"dataSource": {
- "url": "https://lindas-cached.int.cz-aws.net/query",
+ "url": "https://lindas-cached.int.cluster.ldbar.ch/query",
"type": "sparql"
},
"chartConfig": {
diff --git a/app/test/__fixtures/config/int/column-heavy-metals.json b/app/test/__fixtures/config/int/column-heavy-metals.json
index 83bb3087fc..99188da29b 100644
--- a/app/test/__fixtures/config/int/column-heavy-metals.json
+++ b/app/test/__fixtures/config/int/column-heavy-metals.json
@@ -18,7 +18,7 @@
"dataSet": "https://environment.ld.admin.ch/foen/ubd0066/15",
"dataSource": {
"type": "sparql",
- "url": "https://lindas-cached.int.cz-aws.net/query"
+ "url": "https://lindas-cached.int.cluster.ldbar.ch/query"
},
"chartConfig": {
"version": "1.2.1",
diff --git a/app/test/__fixtures/config/int/map-nfi.json b/app/test/__fixtures/config/int/map-nfi.json
index 5d7e51184b..9e5962399a 100644
--- a/app/test/__fixtures/config/int/map-nfi.json
+++ b/app/test/__fixtures/config/int/map-nfi.json
@@ -5,7 +5,7 @@
"dataSet": "https://environment.ld.admin.ch/foen/nfi/nfi_C-98/cube/2023-1",
"dataSource": {
"type": "sparql",
- "url": "https://lindas-cached.int.cz-aws.net/query"
+ "url": "https://lindas-cached.int.cluster.ldbar.ch/query"
},
"meta": {
"title": {
diff --git a/app/test/__fixtures/config/int/pie-red-list.json b/app/test/__fixtures/config/int/pie-red-list.json
index 273b63bef2..3fa56bcf32 100644
--- a/app/test/__fixtures/config/int/pie-red-list.json
+++ b/app/test/__fixtures/config/int/pie-red-list.json
@@ -4,7 +4,7 @@
"dataSet": "https://environment.ld.admin.ch/foen/UBD003002/5",
"dataSource": {
"type": "sparql",
- "url": "https://lindas-cached.int.cz-aws.net/query"
+ "url": "https://lindas-cached.int.cluster.ldbar.ch/query"
},
"meta": {
"title": {
@@ -13,12 +13,7 @@
"it": "",
"en": "Amphibians red list status"
},
- "description": {
- "de": "",
- "fr": "",
- "it": "",
- "en": ""
- }
+ "description": { "de": "", "fr": "", "it": "", "en": "" }
},
"chartConfig": {
"version": "1.2.1",
@@ -30,23 +25,13 @@
}
},
"interactiveFiltersConfig": {
- "legend": {
- "active": false,
- "componentIri": ""
- },
+ "legend": { "active": false, "componentIri": "" },
"timeRange": {
"active": false,
"componentIri": "",
- "presets": {
- "type": "range",
- "from": "",
- "to": ""
- }
+ "presets": { "type": "range", "from": "", "to": "" }
},
- "dataFilters": {
- "active": false,
- "componentIris": []
- }
+ "dataFilters": { "active": false, "componentIris": [] }
},
"fields": {
"y": {
@@ -55,10 +40,7 @@
"segment": {
"componentIri": "https://environment.ld.admin.ch/foen/UBD003002/status",
"palette": "category10",
- "sorting": {
- "sortingType": "byMeasure",
- "sortingOrder": "asc"
- },
+ "sorting": { "sortingType": "byMeasure", "sortingOrder": "asc" },
"colorMapping": {
"https://environment.ld.admin.ch/foen/UBD003002/Status/DD": "#1f77b4",
"https://environment.ld.admin.ch/foen/UBD003002/Status/LC": "#ff7f0e",
diff --git a/app/test/__fixtures/config/int/scatterplot-palmer-penguins.json b/app/test/__fixtures/config/int/scatterplot-palmer-penguins.json
index 6aca0e26a6..da9534effc 100644
--- a/app/test/__fixtures/config/int/scatterplot-palmer-penguins.json
+++ b/app/test/__fixtures/config/int/scatterplot-palmer-penguins.json
@@ -5,7 +5,7 @@
"dataSet": "https://environment.ld.admin.ch/foen/palmer-penguins/18",
"dataSource": {
"type": "sparql",
- "url": "https://lindas-cached.int.cz-aws.net/query"
+ "url": "https://lindas-cached.int.cluster.ldbar.ch/query"
},
"meta": {
"title": {
@@ -14,12 +14,7 @@
"it": "",
"en": "Mean bill depth vs mean bill depth for Adelie Penguins"
},
- "description": {
- "de": "",
- "fr": "",
- "it": "",
- "en": ""
- }
+ "description": { "de": "", "fr": "", "it": "", "en": "" }
},
"chartConfig": {
"version": "1.2.1",
@@ -40,23 +35,13 @@
},
"cubes": [],
"interactiveFiltersConfig": {
- "legend": {
- "active": false,
- "componentIri": ""
- },
+ "legend": { "active": false, "componentIri": "" },
"timeRange": {
"active": false,
"componentIri": "",
- "presets": {
- "type": "range",
- "from": "",
- "to": ""
- }
+ "presets": { "type": "range", "from": "", "to": "" }
},
- "dataFilters": {
- "active": false,
- "componentIris": []
- }
+ "dataFilters": { "active": false, "componentIris": [] }
},
"fields": {
"x": {
diff --git a/e2e/fixtures/hierarchy-test-13-municipality-population.json b/e2e/fixtures/hierarchy-test-13-municipality-population.json
index 534670beff..c92110848b 100644
--- a/e2e/fixtures/hierarchy-test-13-municipality-population.json
+++ b/e2e/fixtures/hierarchy-test-13-municipality-population.json
@@ -3,21 +3,11 @@
"dataSet": "https://environment.ld.admin.ch/foen/fab_hierarchy_test12_switzerland_canton_municipality/5",
"dataSource": {
"type": "sparql",
- "url": "https://lindas-cached.int.cz-aws.net/query"
+ "url": "https://lindas-cached.int.cluster.ldbar.ch/query"
},
"meta": {
- "title": {
- "de": "",
- "fr": "",
- "it": "",
- "en": ""
- },
- "description": {
- "de": "",
- "fr": "",
- "it": "",
- "en": ""
- }
+ "title": { "de": "", "fr": "", "it": "", "en": "" },
+ "description": { "de": "", "fr": "", "it": "", "en": "" }
},
"chartConfig": {
"version": "1.3.0",
@@ -36,26 +26,14 @@
}
},
"interactiveFiltersConfig": {
- "legend": {
- "active": false,
- "componentIri": ""
- },
+ "legend": { "active": false, "componentIri": "" },
"timeRange": {
"active": false,
"componentIri": "",
- "presets": {
- "type": "range",
- "from": "",
- "to": ""
- }
- },
- "timeSlider": {
- "componentIri": ""
+ "presets": { "type": "range", "from": "", "to": "" }
},
- "dataFilters": {
- "active": false,
- "componentIris": []
- }
+ "timeSlider": { "componentIri": "" },
+ "dataFilters": { "active": false, "componentIris": [] }
},
"fields": {
"x": {
diff --git a/e2e/fixtures/offentliche-ausgaben-chart-config.json b/e2e/fixtures/offentliche-ausgaben-chart-config.json
index 4fb7ed8ce6..9db834c16b 100644
--- a/e2e/fixtures/offentliche-ausgaben-chart-config.json
+++ b/e2e/fixtures/offentliche-ausgaben-chart-config.json
@@ -3,21 +3,11 @@
"dataSet": "https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7",
"dataSource": {
"type": "sparql",
- "url": "https://lindas-cached.int.cz-aws.net/query"
+ "url": "https://lindas-cached.int.cluster.ldbar.ch/query"
},
"meta": {
- "title": {
- "de": "",
- "fr": "",
- "it": "",
- "en": ""
- },
- "description": {
- "de": "",
- "fr": "",
- "it": "",
- "en": ""
- }
+ "title": { "de": "", "fr": "", "it": "", "en": "" },
+ "description": { "de": "", "fr": "", "it": "", "en": "" }
},
"chartConfig": {
"version": "1.2.1",
@@ -37,31 +27,18 @@
}
},
"interactiveFiltersConfig": {
- "legend": {
- "active": false,
- "componentIri": ""
- },
+ "legend": { "active": false, "componentIri": "" },
"timeRange": {
"active": false,
"componentIri": "",
- "presets": {
- "type": "range",
- "from": "",
- "to": ""
- }
+ "presets": { "type": "range", "from": "", "to": "" }
},
- "dataFilters": {
- "active": false,
- "componentIris": []
- }
+ "dataFilters": { "active": false, "componentIris": [] }
},
"fields": {
"x": {
"componentIri": "https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/jahr",
- "sorting": {
- "sortingType": "byDimensionLabel",
- "sortingOrder": "asc"
- }
+ "sorting": { "sortingType": "byDimensionLabel", "sortingOrder": "asc" }
},
"y": {
"componentIri": "https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/in-pct"
@@ -70,10 +47,7 @@
"componentIri": "https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code",
"palette": "category10",
"type": "stacked",
- "sorting": {
- "sortingType": "byDimensionLabel",
- "sortingOrder": "asc"
- },
+ "sorting": { "sortingType": "byDimensionLabel", "sortingOrder": "asc" },
"colorMapping": {
"https://ld.admin.ch/cube/dimension/cofog/gf01": "#1f77b4",
"https://ld.admin.ch/cube/dimension/cofog/gf0101": "#ff7f0e",
diff --git a/e2e/limits.spec.ts b/e2e/limits.spec.ts
index 8ef343eaa5..197b6003ff 100644
--- a/e2e/limits.spec.ts
+++ b/e2e/limits.spec.ts
@@ -32,7 +32,7 @@ const CONFIGURATOR_STATE = {
state: "CONFIGURING_CHART",
dataSource: {
type: "sparql",
- url: "https://lindas-cached.int.cz-aws.net/query",
+ url: "https://lindas-cached.int.cluster.ldbar.ch/query",
},
layout: {
type: "tab",
diff --git a/e2e/query-hierarchies.spec.ts b/e2e/query-hierarchies.spec.ts
index 79ceff9015..ded192c733 100644
--- a/e2e/query-hierarchies.spec.ts
+++ b/e2e/query-hierarchies.spec.ts
@@ -94,7 +94,7 @@ const runTest = async ({
const res = await client
.query(DimensionHierarchyDocument, {
cubeIri: cubeIri,
- sourceUrl: "https://lindas-cached.int.cz-aws.net/query",
+ sourceUrl: "https://lindas-cached.int.cluster.ldbar.ch/query",
sourceType: "sparql",
dimensionIri: "https://environment.ld.admin.ch/foen/nfi/unitOfReference",
locale,
diff --git a/k6/load-tests/har/int/edition.js b/k6/load-tests/har/int/edition.js
index 91c3d38d29..80057d735b 100644
--- a/k6/load-tests/har/int/edition.js
+++ b/k6/load-tests/har/int/edition.js
@@ -27,7 +27,7 @@ export const options = {
},
};
-export default function main () {
+export default function main() {
let response;
group(
@@ -754,7 +754,7 @@ export default function main () {
response = http.post(
"https://int.visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
+ '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
{
headers: {
"Accept-Language": "en-US",
@@ -774,7 +774,7 @@ export default function main () {
response = http.post(
"https://int.visualize.admin.ch/api/graphql",
- '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
+ '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
{
headers: {
"Accept-Language": "en-US",
@@ -794,7 +794,7 @@ export default function main () {
response = http.post(
"https://int.visualize.admin.ch/api/graphql",
- '{"query":"query PossibleFilters($sourceType: String!, $sourceUrl: String!, $cubeFilter: DataCubePossibleFiltersCubeFilter!) {\\n possibleFilters(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n cubeFilter: $cubeFilter\\n ) {\\n iri\\n type\\n value\\n __typename\\n }\\n}\\n","operationName":"PossibleFilters","variables":{"sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","cubeFilter":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}}},"filterKey":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
+ '{"query":"query PossibleFilters($sourceType: String!, $sourceUrl: String!, $cubeFilter: DataCubePossibleFiltersCubeFilter!) {\\n possibleFilters(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n cubeFilter: $cubeFilter\\n ) {\\n iri\\n type\\n value\\n __typename\\n }\\n}\\n","operationName":"PossibleFilters","variables":{"sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","cubeFilter":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}}},"filterKey":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
{
headers: {
Accept: "*/*",
@@ -824,7 +824,7 @@ export default function main () {
response = http.post(
"https://int.visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en"}}',
+ '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en"}}',
{
headers: {
Accept: "*/*",
@@ -854,7 +854,7 @@ export default function main () {
response = http.post(
"https://int.visualize.admin.ch/api/graphql",
- '{"query":"query Components($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadata on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n}\\n","operationName":"Components","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en"}}',
+ '{"query":"query Components($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadata on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n}\\n","operationName":"Components","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en"}}',
{
headers: {
Accept: "*/*",
@@ -884,7 +884,7 @@ export default function main () {
response = http.post(
"https://int.visualize.admin.ch/api/graphql",
- '{"query":"query Components($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadata on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n}\\n","operationName":"Components","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code"]}}',
+ '{"query":"query Components($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadata on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n}\\n","operationName":"Components","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code"]}}',
{
headers: {
Accept: "*/*",
@@ -914,7 +914,7 @@ export default function main () {
response = http.post(
"https://int.visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/jahr","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/in-pct","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"],"filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf07":true,"https://ld.admin.ch/cube/dimension/cofog/gf10":true}}}}}',
+ '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/jahr","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/in-pct","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"],"filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf07":true,"https://ld.admin.ch/cube/dimension/cofog/gf10":true}}}}}',
{
headers: {
Accept: "*/*",
@@ -944,7 +944,7 @@ export default function main () {
response = http.post(
"https://int.visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
+ '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
{
headers: {
Accept: "*/*",
@@ -974,7 +974,7 @@ export default function main () {
response = http.post(
"https://int.visualize.admin.ch/api/graphql",
- '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
+ '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
{
headers: {
Accept: "*/*",
@@ -1004,7 +1004,7 @@ export default function main () {
response = http.post(
"https://int.visualize.admin.ch/api/graphql",
- '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en"}}',
+ '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en"}}',
{
headers: {
Accept: "*/*",
@@ -1034,7 +1034,7 @@ export default function main () {
response = http.post(
"https://int.visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf07":true,"https://ld.admin.ch/cube/dimension/cofog/gf10":true}}}}}',
+ '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf07":true,"https://ld.admin.ch/cube/dimension/cofog/gf10":true}}}}}',
{
headers: {
Accept: "*/*",
@@ -1192,7 +1192,7 @@ export default function main () {
response = http.post(
"https://int.visualize.admin.ch/api/graphql",
- '{"query":"query DimensionValues($dataCubeIri: String!, $dimensionIri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters) {\\n dataCubeByIri(\\n iri: $dataCubeIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensionByIri(\\n iri: $dimensionIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"DimensionValues","variables":{"dataCubeIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","dimensionIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en"}}',
+ '{"query":"query DimensionValues($dataCubeIri: String!, $dimensionIri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters) {\\n dataCubeByIri(\\n iri: $dataCubeIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensionByIri(\\n iri: $dimensionIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"DimensionValues","variables":{"dataCubeIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","dimensionIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en"}}',
{
headers: {
Accept: "*/*",
@@ -1222,7 +1222,7 @@ export default function main () {
response = http.post(
"https://int.visualize.admin.ch/api/graphql",
- '{"query":"query DimensionHierarchy($sourceType: String!, $sourceUrl: String!, $locale: String!, $cubeIri: String!, $dimensionIri: String!) {\\n dataCubeByIri(\\n iri: $cubeIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensionByIri(\\n iri: $dimensionIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n ) {\\n ...hierarchyMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"DimensionHierarchy","variables":{"cubeIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","dimensionIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en"}}',
+ '{"query":"query DimensionHierarchy($sourceType: String!, $sourceUrl: String!, $locale: String!, $cubeIri: String!, $dimensionIri: String!) {\\n dataCubeByIri(\\n iri: $cubeIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensionByIri(\\n iri: $dimensionIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n ) {\\n ...hierarchyMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"DimensionHierarchy","variables":{"cubeIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","dimensionIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en"}}',
{
headers: {
Accept: "*/*",
@@ -1253,7 +1253,7 @@ export default function main () {
response = http.post(
"https://int.visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf04":true}}}}}',
+ '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf04":true}}}}}',
{
headers: {
Accept: "*/*",
@@ -1283,7 +1283,7 @@ export default function main () {
response = http.post(
"https://int.visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/jahr","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/in-pct","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"],"filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf04":true}}}}}',
+ '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/jahr","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/in-pct","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"],"filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf04":true}}}}}',
{
headers: {
Accept: "*/*",
diff --git a/k6/load-tests/har/prod/edition.js b/k6/load-tests/har/prod/edition.js
index ac05ef77fb..c69d663bd4 100644
--- a/k6/load-tests/har/prod/edition.js
+++ b/k6/load-tests/har/prod/edition.js
@@ -27,7 +27,7 @@ export const options = {
},
};
-export default function main () {
+export default function main() {
let response;
group(
@@ -751,7 +751,7 @@ export default function main () {
response = http.post(
"https://visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
+ '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
{
headers: {
"Accept-Language": "en-US",
@@ -771,7 +771,7 @@ export default function main () {
response = http.post(
"https://visualize.admin.ch/api/graphql",
- '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
+ '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
{
headers: {
"Accept-Language": "en-US",
@@ -791,7 +791,7 @@ export default function main () {
response = http.post(
"https://visualize.admin.ch/api/graphql",
- '{"query":"query PossibleFilters($sourceType: String!, $sourceUrl: String!, $cubeFilter: DataCubePossibleFiltersCubeFilter!) {\\n possibleFilters(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n cubeFilter: $cubeFilter\\n ) {\\n iri\\n type\\n value\\n __typename\\n }\\n}\\n","operationName":"PossibleFilters","variables":{"sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","cubeFilter":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}}},"filterKey":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
+ '{"query":"query PossibleFilters($sourceType: String!, $sourceUrl: String!, $cubeFilter: DataCubePossibleFiltersCubeFilter!) {\\n possibleFilters(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n cubeFilter: $cubeFilter\\n ) {\\n iri\\n type\\n value\\n __typename\\n }\\n}\\n","operationName":"PossibleFilters","variables":{"sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","cubeFilter":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}}},"filterKey":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
{
headers: {
Accept: "*/*",
@@ -821,7 +821,7 @@ export default function main () {
response = http.post(
"https://visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en"}}',
+ '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en"}}',
{
headers: {
Accept: "*/*",
@@ -851,7 +851,7 @@ export default function main () {
response = http.post(
"https://visualize.admin.ch/api/graphql",
- '{"query":"query Components($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadata on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n}\\n","operationName":"Components","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en"}}',
+ '{"query":"query Components($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadata on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n}\\n","operationName":"Components","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en"}}',
{
headers: {
Accept: "*/*",
@@ -881,7 +881,7 @@ export default function main () {
response = http.post(
"https://visualize.admin.ch/api/graphql",
- '{"query":"query Components($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadata on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n}\\n","operationName":"Components","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code"]}}',
+ '{"query":"query Components($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadata on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n}\\n","operationName":"Components","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code"]}}',
{
headers: {
Accept: "*/*",
@@ -911,7 +911,7 @@ export default function main () {
response = http.post(
"https://visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/jahr","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/in-pct","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"],"filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf07":true,"https://ld.admin.ch/cube/dimension/cofog/gf10":true}}}}}',
+ '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/jahr","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/in-pct","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"],"filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf07":true,"https://ld.admin.ch/cube/dimension/cofog/gf10":true}}}}}',
{
headers: {
Accept: "*/*",
@@ -941,7 +941,7 @@ export default function main () {
response = http.post(
"https://visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
+ '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
{
headers: {
Accept: "*/*",
@@ -971,7 +971,7 @@ export default function main () {
response = http.post(
"https://visualize.admin.ch/api/graphql",
- '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
+ '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
{
headers: {
Accept: "*/*",
@@ -1001,7 +1001,7 @@ export default function main () {
response = http.post(
"https://visualize.admin.ch/api/graphql",
- '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en"}}',
+ '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en"}}',
{
headers: {
Accept: "*/*",
@@ -1031,7 +1031,7 @@ export default function main () {
response = http.post(
"https://visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf07":true,"https://ld.admin.ch/cube/dimension/cofog/gf10":true}}}}}',
+ '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf07":true,"https://ld.admin.ch/cube/dimension/cofog/gf10":true}}}}}',
{
headers: {
Accept: "*/*",
@@ -1189,7 +1189,7 @@ export default function main () {
response = http.post(
"https://visualize.admin.ch/api/graphql",
- '{"query":"query DimensionValues($dataCubeIri: String!, $dimensionIri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters) {\\n dataCubeByIri(\\n iri: $dataCubeIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensionByIri(\\n iri: $dimensionIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"DimensionValues","variables":{"dataCubeIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","dimensionIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en"}}',
+ '{"query":"query DimensionValues($dataCubeIri: String!, $dimensionIri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters) {\\n dataCubeByIri(\\n iri: $dataCubeIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensionByIri(\\n iri: $dimensionIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"DimensionValues","variables":{"dataCubeIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","dimensionIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en"}}',
{
headers: {
Accept: "*/*",
@@ -1219,7 +1219,7 @@ export default function main () {
response = http.post(
"https://visualize.admin.ch/api/graphql",
- '{"query":"query DimensionHierarchy($sourceType: String!, $sourceUrl: String!, $locale: String!, $cubeIri: String!, $dimensionIri: String!) {\\n dataCubeByIri(\\n iri: $cubeIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensionByIri(\\n iri: $dimensionIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n ) {\\n ...hierarchyMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"DimensionHierarchy","variables":{"cubeIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","dimensionIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en"}}',
+ '{"query":"query DimensionHierarchy($sourceType: String!, $sourceUrl: String!, $locale: String!, $cubeIri: String!, $dimensionIri: String!) {\\n dataCubeByIri(\\n iri: $cubeIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensionByIri(\\n iri: $dimensionIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n ) {\\n ...hierarchyMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"DimensionHierarchy","variables":{"cubeIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","dimensionIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en"}}',
{
headers: {
Accept: "*/*",
@@ -1250,7 +1250,7 @@ export default function main () {
response = http.post(
"https://visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf04":true}}}}}',
+ '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf04":true}}}}}',
{
headers: {
Accept: "*/*",
@@ -1280,7 +1280,7 @@ export default function main () {
response = http.post(
"https://visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/jahr","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/in-pct","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"],"filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf04":true}}}}}',
+ '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/jahr","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/in-pct","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"],"filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf04":true}}}}}',
{
headers: {
Accept: "*/*",
diff --git a/k6/load-tests/har/test/edition.js b/k6/load-tests/har/test/edition.js
index 91121c29f3..e1f2f632de 100644
--- a/k6/load-tests/har/test/edition.js
+++ b/k6/load-tests/har/test/edition.js
@@ -27,7 +27,7 @@ export const options = {
},
};
-export default function main () {
+export default function main() {
let response;
group(
@@ -737,7 +737,7 @@ export default function main () {
response = http.post(
"https://test.visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
+ '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
{
headers: {
"Accept-Language": "en-US",
@@ -757,7 +757,7 @@ export default function main () {
response = http.post(
"https://test.visualize.admin.ch/api/graphql",
- '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
+ '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
{
headers: {
"Accept-Language": "en-US",
@@ -777,7 +777,7 @@ export default function main () {
response = http.post(
"https://test.visualize.admin.ch/api/graphql",
- '{"query":"query PossibleFilters($sourceType: String!, $sourceUrl: String!, $cubeFilter: DataCubePossibleFiltersCubeFilter!) {\\n possibleFilters(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n cubeFilter: $cubeFilter\\n ) {\\n iri\\n type\\n value\\n __typename\\n }\\n}\\n","operationName":"PossibleFilters","variables":{"sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","cubeFilter":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}}},"filterKey":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
+ '{"query":"query PossibleFilters($sourceType: String!, $sourceUrl: String!, $cubeFilter: DataCubePossibleFiltersCubeFilter!) {\\n possibleFilters(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n cubeFilter: $cubeFilter\\n ) {\\n iri\\n type\\n value\\n __typename\\n }\\n}\\n","operationName":"PossibleFilters","variables":{"sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","cubeFilter":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}}},"filterKey":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
{
headers: {
Accept: "*/*",
@@ -807,7 +807,7 @@ export default function main () {
response = http.post(
"https://test.visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en"}}',
+ '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en"}}',
{
headers: {
Accept: "*/*",
@@ -837,7 +837,7 @@ export default function main () {
response = http.post(
"https://test.visualize.admin.ch/api/graphql",
- '{"query":"query Components($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadata on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n}\\n","operationName":"Components","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en"}}',
+ '{"query":"query Components($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadata on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n}\\n","operationName":"Components","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en"}}',
{
headers: {
Accept: "*/*",
@@ -867,7 +867,7 @@ export default function main () {
response = http.post(
"https://test.visualize.admin.ch/api/graphql",
- '{"query":"query Components($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadata on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n}\\n","operationName":"Components","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code"]}}',
+ '{"query":"query Components($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadata on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n}\\n","operationName":"Components","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code"]}}',
{
headers: {
Accept: "*/*",
@@ -897,7 +897,7 @@ export default function main () {
response = http.post(
"https://test.visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/jahr","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/in-pct","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"],"filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf07":true,"https://ld.admin.ch/cube/dimension/cofog/gf10":true}}}}}',
+ '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/jahr","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/in-pct","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"],"filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf07":true,"https://ld.admin.ch/cube/dimension/cofog/gf10":true}}}}}',
{
headers: {
Accept: "*/*",
@@ -927,7 +927,7 @@ export default function main () {
response = http.post(
"https://test.visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
+ '{"query":"query DataCubeMetadata($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n iri\\n identifier\\n title\\n description\\n publisher\\n version\\n workExamples\\n contactName\\n contactEmail\\n landingPage\\n expires\\n datePublished\\n dateModified\\n publicationStatus\\n themes {\\n iri\\n label\\n __typename\\n }\\n creator {\\n iri\\n label\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeMetadata","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
{
headers: {
Accept: "*/*",
@@ -957,7 +957,7 @@ export default function main () {
response = http.post(
"https://test.visualize.admin.ch/api/graphql",
- '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
+ '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"}},"filterKeys":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"}}',
{
headers: {
Accept: "*/*",
@@ -987,7 +987,7 @@ export default function main () {
response = http.post(
"https://test.visualize.admin.ch/api/graphql",
- '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en"}}',
+ '{"query":"query ComponentsWithHierarchies($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters, $componentIds: [String!]) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensions(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n measures(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"ComponentsWithHierarchies","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en"}}',
{
headers: {
Accept: "*/*",
@@ -1017,7 +1017,7 @@ export default function main () {
response = http.post(
"https://test.visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf07":true,"https://ld.admin.ch/cube/dimension/cofog/gf10":true}}}}}',
+ '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf07":true,"https://ld.admin.ch/cube/dimension/cofog/gf10":true}}}}}',
{
headers: {
Accept: "*/*",
@@ -1171,7 +1171,7 @@ export default function main () {
response = http.post(
"https://test.visualize.admin.ch/api/graphql",
- '{"query":"query DimensionValues($dataCubeIri: String!, $dimensionIri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters) {\\n dataCubeByIri(\\n iri: $dataCubeIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensionByIri(\\n iri: $dimensionIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"DimensionValues","variables":{"dataCubeIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","dimensionIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en"}}',
+ '{"query":"query DimensionValues($dataCubeIri: String!, $dimensionIri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $filters: Filters) {\\n dataCubeByIri(\\n iri: $dataCubeIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensionByIri(\\n iri: $dimensionIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n ) {\\n ...dimensionMetadataWithHierarchies\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment dimensionMetadataWithHierarchies on Dimension {\\n iri\\n label\\n description\\n isNumerical\\n isKeyDimension\\n dataType\\n order\\n values(sourceType: $sourceType, sourceUrl: $sourceUrl, filters: $filters)\\n unit\\n related {\\n iri\\n type\\n __typename\\n }\\n ... on TemporalDimension {\\n timeUnit\\n timeFormat\\n __typename\\n }\\n ... on NumericalMeasure {\\n isCurrency\\n currencyExponent\\n resolution\\n isDecimal\\n __typename\\n }\\n ...hierarchyMetadata\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"DimensionValues","variables":{"dataCubeIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","dimensionIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en"}}',
{
headers: {
Accept: "*/*",
@@ -1201,7 +1201,7 @@ export default function main () {
response = http.post(
"https://test.visualize.admin.ch/api/graphql",
- '{"query":"query DimensionHierarchy($sourceType: String!, $sourceUrl: String!, $locale: String!, $cubeIri: String!, $dimensionIri: String!) {\\n dataCubeByIri(\\n iri: $cubeIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensionByIri(\\n iri: $dimensionIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n ) {\\n ...hierarchyMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"DimensionHierarchy","variables":{"cubeIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","dimensionIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en"}}',
+ '{"query":"query DimensionHierarchy($sourceType: String!, $sourceUrl: String!, $locale: String!, $cubeIri: String!, $dimensionIri: String!) {\\n dataCubeByIri(\\n iri: $cubeIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n dimensionByIri(\\n iri: $dimensionIri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n ) {\\n ...hierarchyMetadata\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyMetadata on Dimension {\\n hierarchy(sourceType: $sourceType, sourceUrl: $sourceUrl) {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n children {\\n ...hierarchyValueFields\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment hierarchyValueFields on HierarchyValue {\\n value\\n dimensionIri\\n depth\\n label\\n alternateName\\n hasValue\\n position\\n identifier\\n}\\n","operationName":"DimensionHierarchy","variables":{"cubeIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","dimensionIri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en"}}',
{
headers: {
Accept: "*/*",
@@ -1232,7 +1232,7 @@ export default function main () {
response = http.post(
"https://test.visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf04":true}}}}}',
+ '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf04":true}}}}}',
{
headers: {
"Accept-Language": "en-US",
@@ -1252,7 +1252,7 @@ export default function main () {
response = http.post(
"https://test.visualize.admin.ch/api/graphql",
- '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://lindas.int.cz-aws.net/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/jahr","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/in-pct","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"],"filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf04":true}}}}}',
+ '{"query":"query DataCubeObservations($iri: String!, $sourceType: String!, $sourceUrl: String!, $locale: String!, $componentIds: [String!], $filters: Filters, $limit: Int) {\\n dataCubeByIri(\\n iri: $iri\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n locale: $locale\\n ) {\\n observations(\\n sourceType: $sourceType\\n sourceUrl: $sourceUrl\\n componentIds: $componentIds\\n filters: $filters\\n limit: $limit\\n ) {\\n data\\n sparqlEditorUrl\\n __typename\\n }\\n __typename\\n }\\n}\\n","operationName":"DataCubeObservations","variables":{"iri":"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/7","sourceType":"sparql","sourceUrl":"https://int.lindas.admin.ch/query","locale":"en","componentIds":["https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/jahr","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/in-pct","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code","https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel"],"filters":{"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/kurzel":{"type":"single","value":"Bd"},"https://environment.ld.admin.ch/foen/fab_Offentliche_Ausgaben_test3/code":{"type":"multi","values":{"https://ld.admin.ch/cube/dimension/cofog/gf02":true,"https://ld.admin.ch/cube/dimension/cofog/gf04":true}}}}}',
{
headers: {
"Accept-Language": "en-US",