Add query time tracking to IO Events.

This commit is contained in:
Patrick Fic
2021-04-22 10:16:49 -07:00
parent cdf99a16fe
commit 08faff4d8e
11 changed files with 112 additions and 3 deletions

View File

@@ -778,3 +778,10 @@ exports.QUERY_JOB_COSTING_DETAILS_MULTI = ` query QUERY_JOB_COSTING_DETAILS_MULT
}
}
`;
exports.INSERT_IOEVENT = ` mutation INSERT_IOEVENT($event: ioevents_insert_input!) {
insert_ioevents_one(object: $event) {
id
}
}
`;