You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let p = await db.query(/* surrealql */ `select name, description, (select name, actions.action from targets.target) as targets from drugs where "Anticonvulsants" in categories.category.category`);
p = p[0]; p
//#nbts@code
let p = await db.query(/* surrealql */ `select categories, classification, class, description, superclass, (select name, actions.action from targets.target) as targets from drugs where name="Oxprenolol"`);
p = p[0][0]; p
//#nbts@code
await db.query(/* surrealql */ `select targets from drugs where "Anticonvulsants" limit 2`)