mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-03 19:24:59 +02:00
32 lines
1.0 KiB
GraphQL
32 lines
1.0 KiB
GraphQL
"""
|
|
Represents the group that accompanies a Theme.
|
|
|
|
For example, English Version is the group for english dubbed Theme.
|
|
"""
|
|
type ThemeGroup @model(class: "App\\Models\\Wiki\\Group") {
|
|
"The primary key of the resource"
|
|
id: Int! @rename(attribute: "group_id")
|
|
|
|
"The name of the group"
|
|
name: String!
|
|
|
|
"The slug of the group"
|
|
slug: String!
|
|
|
|
"The date that the resource was created"
|
|
createdAt(format: String! = "Y-m-d H:i:s"): String @timestamp(attribute: "created_at")
|
|
|
|
"The date that the resource was updated"
|
|
updatedAt(format: String! = "Y-m-d H:i:s"): String @timestamp(attribute: "updated_at")
|
|
}
|
|
|
|
extend type Query {
|
|
"Returns a listing of theme group resources given fields."
|
|
themegroupPagination(
|
|
id: Int @eq(key: "group_id")
|
|
name: String @eq
|
|
slug: String @eq
|
|
where: _ @whereConditions(columnsEnum: ThemeGroupFilterableColumns, handler: "App\\GraphQL\\WhereConditions\\WhereConditionsHandler")
|
|
sort: [ThemeGroupSort!] @sort
|
|
): [ThemeGroup!]! @paginate
|
|
} |