Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit fb26cb33 authored by Nicolas's avatar Nicolas
Browse files

Création du fichier Schéma pour GraphQL

parent 25733089
No related branches found
No related tags found
No related merge requests found
type Query {
ImageSliderManager (
id: [Int] @doc(description: "ID of the Image Slider Manager")
identifier: [Int] @doc(description: "Identifier of the Image Slider Manager")
): ImageSliderManagers @resolver(class: "NicolasBejean\\ImageSliderManager\\Model\\Resolver\\ImageSliders") @doc(description: "The Image Slider Manager query returns information about Slider") @cache(cacheIdentity: "NicolasBejean\\ImageSliderManager\\Model\\Resolver\\ImageSlider\\Identity")
}
type ImageSliderManagers @doc(description: "Images information") {
items: [ImageSliderManager] @doc(description: "An array of Slider")
}
type ImageSliderManager @doc(description: "Image Slider Manager defines all Images information") {
identifier: String @doc(description: "Image Slider Manager identifier")
content: String @doc(description: "Image Slider Manager content")
name: String @doc(description: "Image Slider Manager name")
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment