SELECT * FROM iasql_install('<modules>');
INSERT INTO graphql_api (name, authentication_type, tags)
VALUES ('<apiName>', '<authType>', '{ "toUpdate": "value", "toDelete": "value2" }');
SELECT * FROM graphql_api WHERE name='<apiName>';
UPDATE graphql_api
SET authentication_type='<newAuthType>', tags = '{ "toUpdate": "value2", "newTag": "value3" }'
WHERE name='<apiName>';
SELECT * FROM graphql_api WHERE authentication_type='<newAuthType>' and name='<apiName>';
DELETE FROM graphql_api
WHERE name = '<apiName>';