Skip to content

Commit

Permalink
fix: catalogue put back limit and offset (#4475)
Browse files Browse the repository at this point in the history
Closes #4413
  • Loading branch information
connoratrug authored Nov 11, 2024
1 parent 2ffe0b1 commit 5a568cb
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions apps/nuxt3-ssr/gql/datasets.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
import gql from "graphql-tag";
export default gql`
query Datasets($id: String) {
Datasets(filter: { resource: { id: { equals: [$id] } } }) {
query Datasets(
$id: String
$limit: Int
$offset: Int
$orderby: Datasetsorderby
) {
Datasets(
filter: { resource: { id: { equals: [$id] } } }
limit: $limit
offset: $offset
orderby: $orderby
) {
name
description
}
Expand Down

0 comments on commit 5a568cb

Please sign in to comment.