Closed bar10dr closed 5 months ago
Figured it out
public async Task<LogItem?> GetLog(Guid Id)
{
var response = await _arangoClient.Cursor.PostCursorAsync<LogItem>(
@$"FOR doc IN {_collectionName}
FILTER doc.Id == ""{Id}""
RETURN doc"
);
return response.Result.SingleOrDefault();
}
I'm trying to filter on a Guid property, but I get the following error
How do I accomplish this?