Managing Content
Working with Content
Creating Content
GraphQL Mutation Example:
mutation {
createContent(
channel: "did:rad:channel/5678-wxyz",
input: {
metadata: {
name: "Summer Adventure",
summary: "A video capturing summer memories",
keywords: ["summer", "adventure", "vacation"]
}
}
) {
id
metadata {
name
summary
}
}
} Updating Content
GraphQL Mutation Example:
Best Practices
Last updated

