Documents
Last updated
Was this helpful?
Was this helpful?
mutation {
createDocument(input: {
title: "Assembly Instructions"
componentId: "comp_123"
fileUrl: "https://example.com/file.pdf"
}) {
document {
id
title
}
}
}query GetCODocuments {
changeOrders {
get(filter: { ids: ["123e4567-e89b-12d3-a456-426614174000"] }) {
connection {
edges {
node {
id
name
documents {
id
componentId
componentVersion
}
}
}
}
}
}
}