Skip to content

Commit cfb32c8

Browse files
committed
endpoints: Update available endpoints after LINDAS INT cut over #27
1 parent 9ac971e commit cfb32c8

File tree

2 files changed

+26
-22
lines changed

2 files changed

+26
-22
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ You can also check the
1313

1414
### Changed
1515

16-
- Improve cube query performance by removing expensive `DISTINCT` and `GROUP BY` clauses from SPARQL queries
16+
- Maintenance
17+
- Update available data sources after LINDAS INT cut over
18+
- Performance
19+
- Improve cube query performance by removing expensive `DISTINCT` and
20+
`GROUP BY` clauses from SPARQL queries
1721

1822
### 6.3.0 - 2026-02-12
1923

app/domain/data-source/constants.ts

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,6 @@ export const SOURCE_OPTIONS: SourceOption[] = [
3333
isTrusted: true,
3434
supportsCachingPerCubeIri: true,
3535
},
36-
{
37-
value: "sparql+https://lindas-cached.int.cluster.ldbar.ch/query",
38-
key: "Int",
39-
label: "LINDAS INT",
40-
url: "https://lindas-cached.int.cluster.ldbar.ch/query",
41-
isTrusted: false,
42-
supportsCachingPerCubeIri: true,
43-
},
44-
{
45-
value: "sparql+https://int.lindas.admin.ch/query",
46-
key: "Int-uncached",
47-
label: "LINDAS INT (uncached)",
48-
url: "https://int.lindas.admin.ch/query",
49-
isTrusted: false,
50-
supportsCachingPerCubeIri: true,
51-
},
5236

5337
// For LINDASnext
5438
{
@@ -67,23 +51,23 @@ export const SOURCE_OPTIONS: SourceOption[] = [
6751
isTrusted: false,
6852
supportsCachingPerCubeIri: true,
6953
},
54+
// Migration done for the following data sources
7055
{
7156
value: "sparql+https://int.cached.lindas.admin.ch/query",
72-
key: "LINDASnext-Int",
57+
key: "Int",
7358
label: "LINDASnext INT",
7459
url: "https://int.cached.lindas.admin.ch/query",
7560
isTrusted: false,
7661
supportsCachingPerCubeIri: true,
7762
},
7863
{
79-
value: "sparql+https://lindas.int.cz-aws.net/query",
80-
key: "LINDASnext-Int-uncached",
64+
value: "sparql+https://int.lindas.admin.ch/query",
65+
key: "Int-uncached",
8166
label: "LINDASnext INT (uncached)",
82-
url: "https://lindas.int.cz-aws.net/query",
67+
url: "https://int.lindas.admin.ch/query",
8368
isTrusted: false,
8469
supportsCachingPerCubeIri: true,
8570
},
86-
// Migration done for the following data sources
8771
{
8872
value: "sparql+https://test.cached.lindas.admin.ch/query",
8973
key: "Test",
@@ -102,6 +86,22 @@ export const SOURCE_OPTIONS: SourceOption[] = [
10286
},
10387

10488
// For LINDASold
89+
{
90+
value: "sparql+https://lindas-cached.int.cluster.ldbar.ch/query",
91+
key: "LINDASold-Int",
92+
label: "LINDASold INT",
93+
url: "https://lindas-cached.int.cluster.ldbar.ch/query",
94+
isTrusted: false,
95+
supportsCachingPerCubeIri: true,
96+
},
97+
{
98+
value: "sparql+https://old.int.ld.ldbar.ch/query",
99+
key: "LINDASold-Int-uncached",
100+
label: "LINDASold INT (uncached)",
101+
url: "https://old.int.ld.ldbar.ch/query",
102+
isTrusted: false,
103+
supportsCachingPerCubeIri: true,
104+
},
105105
{
106106
value: "sparql+https://lindas-cached.test.cluster.ldbar.ch/query",
107107
key: "LINDASold-Test",

0 commit comments

Comments
 (0)