Hey Team! :wave: More GraphQL questions here - The...
# troubleshoot
g
Hey Team! 👋 More GraphQL questions here - The demo project shows some great examples of Column level Tags and Terms. However, I am unable to query these with the attached GraphQL query. Any ideas? Thanks!
Heres the query. I am running this on the demo project - https://demo.datahubproject.io/api/graphiql
Copy code
{
    dataset(urn: "urn:li:dataset:(urn:li:dataPlatform:dbt,jaffle_shop.dbt_jaffle.customers,PROD)"){
    schemaMetadata{
      fields{
        fieldPath
        glossaryTerms{
          terms{
            term{
              urn
            }
          }
        }
        tags {
          tags {
            tag {
              urn
            }
          }
        }
      }
    }
  }
}
b
Hi there!
👋 1
You can get those tags + terms from the editableSchemaMetadata field 🙂 SchemaMetadata contains data exclusively ingested from a 3rd party system
g
ahhh ok...just had the wrong object. Thanks @big-carpet-38439 !