Open hennevogel opened 7 years ago
As a user I want to query the OBS for data that I want. Only the data that I want. With an GraphQL API layer you can do something like
{ project { name packages { name } } }
to get
{ "project": { "name": "OBS:Server:Unstable" "packages": [ "obs-server", "osc", "ruby" ] } }
Like :+1: GitHub recently introduced this in their API v4
As a user I want to query the OBS for data that I want. Only the data that I want. With an GraphQL API layer you can do something like
to get