MCPcopy Index your code
hub / github.com/O365/python-o365 / chain

Method chain

O365/utils/utils.py:895–904  ·  view source on GitHub ↗

Start a chain operation :param ChainOperator, str operation: how to combine with a new one :rtype: Query

(self, operation=ChainOperator.AND)

Source from the content-addressed store, hash-verified

893
894 @fluent
895 def chain(self, operation=ChainOperator.AND):
896 """ Start a chain operation
897
898 :param ChainOperator, str operation: how to combine with a new one
899 :rtype: Query
900 """
901 if isinstance(operation, str):
902 operation = ChainOperator(operation)
903 self._chain = operation
904 return self
905
906 @fluent
907 def on_attribute(self, attribute):

Callers 4

underscore.jsFile · 0.80
vFunction · 0.80
resultFunction · 0.80

Calls 1

ChainOperatorClass · 0.85

Tested by

no test coverage detected