mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
18 lines
392 B
GraphQL
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
|
|
}
|
|
}
|
|
}
|
|
} |