GraphQL API
Authentication
List all workbooks
query {
workbooks {
id
name
}
}Create a blank workbook
mutation {
createWorkbook {
workbook {
id
name
}
}
}List the sheets in a specific workbook
View the contents of A1 in the first sheet of a workbook
A1 in the first sheet of a workbookSet cell A1 in the first sheet of a workbook to "300$"
A1 in the first sheet of a workbook to "300$"Notes
Last updated