Skip to content

Commit

Permalink
fix(dimensions): dimensions query was wrong in GraphQLProtocol
Browse files Browse the repository at this point in the history
  • Loading branch information
serramatutu committed Jun 18, 2024
1 parent 8da0326 commit bb3d509
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changes/unreleased/Fixes-20240618-184029.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
kind: Fixes
body: Dimensions query had wrong value in protocol
time: 2024-06-18T18:40:29.942252+02:00
2 changes: 1 addition & 1 deletion dbtsl/api/graphql/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class GraphQLProtocol:
"""

metrics = ListMetricsOperation()
measures = ListDimensionsOperation()
dimensions = ListDimensionsOperation()
measures = ListMeasuresOperation()
create_query = CreateQueryOperation()
get_query_result = GetQueryResultOperation()

0 comments on commit bb3d509

Please sign in to comment.