Skip to content

Commit

Permalink
fix: query identation in get_datasets backend.py
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelmeister committed Dec 11, 2024
1 parent 189f2a8 commit 161a7f7
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions python-package/basedosdados/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,36 +72,36 @@ def get_datasets(
query ($first: Int!, $offset: Int!) {
allDataset(first: $first, offset: $offset) {
edges {
node {
slug
name
description
organizations {
edges {
node {
name
}
}
}
tags {
edges {
node {
name
}
}
}
themes {
edges {
node {
name
}
}
}
createdAt
updatedAt
}
}
totalCount
node {
slug
name
description
organizations {
edges {
node {
name
}
}
}
tags {
edges {
node {
name
}
}
}
themes {
edges {
node {
name
}
}
}
createdAt
updatedAt
}
}
totalCount
}
}
"""
Expand Down

0 comments on commit 161a7f7

Please sign in to comment.