Skip to content

Teachify Admin API Mutations

Important: The Teachify Admin API is currently under development and not yet available for public use. This documentation is provided for preview purposes only.

Mutations Documentation

The Teachify Admin API mutations documentation has been reorganized for better navigation and scalability. The new structure provides detailed information about each mutation, along with common patterns and concepts.

Core Documentation

Resource-Specific Mutations

The API provides mutations for managing the following resources:

Quick Example

mutation {
createCourse(input: {
name: "GraphQL Fundamentals"
description: "Learn how to use GraphQL APIs"
published: true
}) {
course {
id
name
}
errors {
field
message
}
}
}

For more information about the Teachify Admin API, please refer to the API Overview.