Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
fix queries type
Browse files Browse the repository at this point in the history
  • Loading branch information
boristane committed Apr 17, 2022
1 parent 45cd7f1 commit 2bfe522
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/services/api/paths/queries.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import { client } from "../clients";

export interface QueryParameters {
dataset: string;
groupBys?: string[];
namespaces?: Array<{
type: string;
value: string;
}>;
namespaces?: string[];
filters?: Array<QueryFilter>;
filterCombination: "AND" | "OR";
calculations: Array<{
Expand Down

0 comments on commit 2bfe522

Please sign in to comment.