1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
2023-07-21 23:10:50 +02:00

18 lines
392 B
GraphQL

query GetEntries($filter: EntryFilterInput $skip: Int $take: Int) {
entries(where: $filter skip: $skip take: $take) {
totalCount
items {
id
author
name
summary
entryType
downloads
createdAt
categories {
name
icon
}
}
}
}