const multipleIdQuery = (ids: string[]) => { return `id IN {${ids.map(id => `uuid(${id})`).join(',')}}`; }; export { multipleIdQuery };