mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
16 lines
352 B
GraphQL
16 lines
352 B
GraphQL
query GetDependantEntries($entryId: Long! $skip: Int $take: Int) {
|
|
entries(
|
|
where: {
|
|
latestRelease: { dependencies: { some: { id: { eq: $entryId } } } }
|
|
}
|
|
skip: $skip
|
|
take: $take
|
|
order: { createdAt: DESC }
|
|
) {
|
|
totalCount
|
|
items {
|
|
...entrySummary
|
|
}
|
|
}
|
|
}
|