1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Artemis/src/Artemis.WebClient.Workshop/Queries/GetDependantEntries.graphql
RobertBeekman 9132301dbf Workshop - Show required plugins on profile pages
Workshop - Show related profiles on plugin pages
2024-03-03 22:09:10 +01:00

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
}
}
}