Column objects allow constraints to be constructed in something
close to a declarative style
|
|
__init__(self,
path,
model,
subclasses={},
query=None,
parent=None)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
select(self,
*cols)
Create a new query with this column as the base class, selecting the
given fields. |
source code
|
|
|
|
where(self,
*args,
**kwargs)
Create a new query based on this column, filtered with the given
constraint. |
source code
|
|
|
|
__iter__(self)
Return a query for all objects of this class in the given webservice |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__subclasshook__
|