-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
help wantedExtra attention is neededExtra attention is neededquestionFurther information is requestedFurther information is requested
Description
Since s2dm modeling approach aims to empower domain experts (usually non-modelers), the idea is that they model actively in the GraphQL SDL type system. To keep it simple, the capabilities on the data described in the SDL can be automatically created in the form of Query and Mutation. For example:
The data structure is maintained by domain expert: What a seat is and what fields does it have?
type Seat {
...
}whereas the capabilities are produced automatically by the tools: What a seat can do (or what one can do on a seat)?
type Query {
...
}
type Mutation {
...
}What is the best generic pattern that makes sense to use for those API operation templates?
Metadata
Metadata
Assignees
Labels
help wantedExtra attention is neededExtra attention is neededquestionFurther information is requestedFurther information is requested