The List API
List API Integration
[Link]
async loadData()
{
const query = `query
{
issuelist
{
id title status owner
created effort due
}
}’;
const response = await fetch('/graphql',
{
method: 'POST',
headers: { 'Content-Type': 'application/json'},
body: [Link]({ query })
});
const result = await [Link]();
[Link]({ issues: [Link] });
}