5f2e60a9e2
* feat: use mod version targets * chore: lint * chore: remove unused * chore: target dev on ci * fix: rename WindowsNoEditor target to Windows fix: close file reader * fix: ensure closure of downloaded mod * fix: ensure all important events are sent * fix: lock adding files to cache --------- Co-authored-by: mircearoata <mircearoatapalade@gmail.com>
24 lines
No EOL
511 B
GraphQL
24 lines
No EOL
511 B
GraphQL
# @genqlient(omitempty: true)
|
|
query ModVersionsWithDependencies (
|
|
$modId: String!,
|
|
) {
|
|
mod: getModByIdOrReference(modIdOrReference: $modId) {
|
|
id
|
|
versions (filter: { limit: 100 }) {
|
|
id
|
|
version
|
|
link
|
|
hash
|
|
dependencies {
|
|
mod_id
|
|
condition
|
|
optional
|
|
}
|
|
targets {
|
|
targetName
|
|
link
|
|
hash
|
|
}
|
|
}
|
|
}
|
|
} |