Hi there! I was wondering if there is any plan to ...
# getting-started
a
Hi there! I was wondering if there is any plan to support adding documentation to a dataset with the GraphQL API
1
b
its already there actually, any UI operation uses GraphQL to communicate to backend
a
Docs says it is not supported 😕
b
Hmm maybe a correction is required @delightful-ram-75848
If you open dev tools in browser while editing documentation, you will see the graphql request being sent
a
Thanks! I managed to do it
Copy code
query = """
mutation updateDataset {
  updateDataset(
    urn:"urn:li:dataset:(urn:li:dataPlatform:<platform_name>,PRE)",
    input: {
      editableProperties: {
          description: "test graphql"
      }
    }
  ) {
  name
  description
  }
}
"""
d
Thanks for the report - We'll update the doc!