org.ryoframework.exposition.graphql.Annotations.kt Maven / Gradle / Ivy
The newest version!
package org.ryoframework.exposition.graphql
annotation class GraphQLEndpoint(val name: String = "")
annotation class GraphQLQuery(val name: String = "")
annotation class GraphQLMutation(val name: String = "")
annotation class GraphQLArgument(val name: String)
annotation class GraphQLID