Constant holochain_sqlite::sql::sql_cell::FETCH_PUBLISHABLE_OP

source ·
pub const FETCH_PUBLISHABLE_OP: &str = "SELECT\n  DhtOp.hash,\n  DhtOp.type,\n  Action.blob AS action_blob,\n  Entry.blob AS entry_blob\nFROM\n  DhtOp\n  JOIN Action ON DhtOp.action_hash = Action.hash\n  LEFT JOIN Entry ON Action.entry_hash = Entry.hash\nWHERE\n  DhtOp.hash = :hash\n  AND DhtOp.withhold_publish IS NULL";