LogicSymbol#

class corkus.objects.LogicSymbol#

LogicSymbols are use in more advanced search calls in the API.

If you want to search for Ingredient that require ProfessionType.ARMOURING AND ProfessionType.SCRIBING at the same time, you use AND

If you want to search for Ingredient that require ProfessionType.ARMOURING OR ProfessionType.SCRIBING you use OR. It will result all of the results that have any of provided skills.

AND = '&'#

Return list of results that match ALL OF THE PROVIDED ARGUMENTS.

OR = '^'#

Return list of results that match ONE OR MORE OF THE PROVIDED ARGUMENTS.