Tried to accomplish smth like this: ``` findRelationships({ alias: 'Projects', where: { source: { id: id, }, target: { deleted: null, // undefined or smth }, }, session: transaction, } ``` Here I needed to fetch all Projects without `deleted` property. When Project is being deleted it gets ISO8601 string set into `deleted` property. Are there any workarounds to solve this? (except raw cypher) Thanks!