Last updated 2 months ago
with_name(name: str, sensitivity: bool = True) ->
Adds a filter to get contracts with the given name.
from glider import * def query(): contracts = Contracts().with_name("Manager").exec(10) return contracts
Contracts