send-cmd ( cmd -- result ) (original) (raw)

send-cmd ( cmd -- result )

Vocabulary
mongodb.connection

Inputs

cmd an object

Outputs

result an object

Definition

USING: accessors kernel ;

IN: mongodb.connection

: send-cmd ( cmd -- result )
[ cmd-collection ] [ assoc>> ] bi send-query-1result ;
inline