Destructuring payload camunda

Is it possible to eliminate some payload response fields from camunda? When making a request, the camunda returns me many fields that are of the camunda, and I would like to decrease is it possible to treat it directly in the camunda?

ex:

[
{
“id”: “54282171-c0f4-11e9-8632-8e9db0141fac”,
“name”: “Success”,
“assignee”: null,
“created”: “2019-08-17T10:38:42.798-0300”,
“due”: null,
“followUp”: null,
“delegationState”: null,
“description”: null,
“executionId”: “33a7351c-c0f4-11e9-8632-8e9db0141fac”,
“owner”: null,
“parentTaskId”: null,
“priority”: 50,
“processDefinitionId”: “sucessClient:4:29192e5b-c0f4-11e9-8632-8e9db0141fac”,
“processInstanceId”: “33a7351c-c0f4-11e9-8632-8e9db0141fac”,
“taskDefinitionKey”: “TaskSuccess”,
“caseExecutionId”: null,
“caseInstanceId”: null,
“caseDefinitionId”: null,
“suspended”: false,
“formKey”: null,
“tenantId”: null
}
]

Could you remove some of these fields from camunda response?

You could either change the REST API itself or you could use the GraphQL extension.

@Niall is this extension actively maintained? I have seen the last commit was 2 years ago