We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
disableDistinct
1 parent 877de2f commit d984334Copy full SHA for d984334
app/rdf/queries.ts
@@ -453,7 +453,6 @@ export const getCubeObservations = async ({
453
preview,
454
limit,
455
observationsView,
456
- disableDistinct: !filters || Object.keys(filters).length === 0,
457
});
458
459
const serverFilter =
@@ -723,13 +722,13 @@ async function fetchViewObservations({
723
722
724
725
726
- disableDistinct,
727
}: {
728
preview?: boolean | null;
729
limit?: number | null;
730
observationsView: View;
731
- disableDistinct: boolean;
732
}) {
+ const disableDistinct = true
+
733
/**
734
* Add LIMIT to query
735
*/
0 commit comments