Annotation: transactions.has_nexus

CREATE OR REPLACE FUNCTION transactions.has_nexus(_state_id integer)
RETURNS boolean

Information: transactions.has_nexus

Schema transactions
Function Name has_nexus
Arguments _state_id integer
Owner postgres
Result Type boolean
Description

Implementation: transactions.has_nexus

CREATE OR REPLACE FUNCTION transactions.has_nexus(_state_id integer)
 RETURNS boolean
 LANGUAGE plpgsql
AS $function$
BEGIN
    RETURN false;--Todo
END
$function$