How do I make a request to the /v1/taxonomy/grahql endpoint?

Hi!

What query should I provide to consume the /v1/taxonomy/grahql endpoint?

Hi!

Copy paste the query you create in the GraphiQL editor into the “query” field in the /graphql endpoint.

Link to GraphiQL editor:
https://taxonomy.api.jobtechdev.se/v1/taxonomy/graphiql

Example query:

query MyQuery {
concepts(type: “ssyk-level-1”) {
id
preferred_label
type
ssyk_code_2012
narrower {
id
preferred_label
type
ssyk_code_2012
narrower {
id
preferred_label
type
ssyk_code_2012
narrower {
id
preferred_label
type
definition
ssyk_code_2012
}
}
}
}
}

Example curl:

curl -X GET “https://taxonomy.api.jobtechdev.se/v1/taxonomy/graphql?query=query%20MyQuery%20{%20%20%20concepts(type%3A%20"ssyk-level-1")%20{%20%20%20%20%20id%20%20%20%20%20preferred_label%20%20%20%20%20type%20%20%20%20%20ssyk_code_2012%20%20%20%20%20narrower%20{%20%20%20%20%20%20%20id%20%20%20%20%20%20%20preferred_label%20%20%20%20%20%20%20type%20%20%20%20%20%20%20ssyk_code_2012%20%20%20%20%20%20%20narrower%20{%20%20%20%20%20%20%20%20%20id%20%20%20%20%20%20%20%20%20preferred_label%20%20%20%20%20%20%20%20%20type%20%20%20%20%20%20%20%20%20ssyk_code_2012%20%20%20%20%20%20%20%20%20narrower%20{%20%20%20%20%20%20%20%20%20%20%20id%20%20%20%20%20%20%20%20%20%20%20preferred_label%20%20%20%20%20%20%20%20%20%20%20type%20%20%20%20%20%20%20%20%20%20%20definition%20%20%20%20%20%20%20%20%20%20%20ssyk_code_2012%20%20%20%20%20%20%20%20%20}%20%20%20%20%20%20%20}%20%20%20%20%20}%20%20%20}%20}” -H “accept: application/json” -H “api-key: 111”

Cheers!