Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
uuid = sgqlc.types.Field(String, graphql_name='uuid')
is_locked = sgqlc.types.Field(Boolean, graphql_name='isLocked')
class OperationFilterType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('ouid', 'op_type', 'entity_type', 'target', 'from_date', 'to_date')
ouid = sgqlc.types.Field(String, graphql_name='ouid')
op_type = sgqlc.types.Field(String, graphql_name='opType')
entity_type = sgqlc.types.Field(String, graphql_name='entityType')
target = sgqlc.types.Field(String, graphql_name='target')
from_date = sgqlc.types.Field(DateTime, graphql_name='fromDate')
to_date = sgqlc.types.Field(DateTime, graphql_name='toDate')
class OrganizationFilterType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('name',)
name = sgqlc.types.Field(String, graphql_name='name')
class ProfileInputType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('name', 'email', 'gender', 'gender_acc', 'is_bot', 'country_code')
name = sgqlc.types.Field(String, graphql_name='name')
email = sgqlc.types.Field(String, graphql_name='email')
gender = sgqlc.types.Field(String, graphql_name='gender')
gender_acc = sgqlc.types.Field(Int, graphql_name='genderAcc')
is_bot = sgqlc.types.Field(Boolean, graphql_name='isBot')
country_code = sgqlc.types.Field(String, graphql_name='countryCode')
String = sgqlc.types.String
########################################################################
# Input Objects
########################################################################
class CountryFilterType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('code', 'term',)
code = sgqlc.types.Field(String, graphql_name='code')
term = sgqlc.types.Field(String, graphql_name='term')
class IdentityFilterType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('uuid', 'is_locked')
uuid = sgqlc.types.Field(String, graphql_name='uuid')
is_locked = sgqlc.types.Field(Boolean, graphql_name='isLocked')
class OperationFilterType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('ouid', 'op_type', 'entity_type', 'target', 'from_date', 'to_date')
ouid = sgqlc.types.Field(String, graphql_name='ouid')
op_type = sgqlc.types.Field(String, graphql_name='opType')
entity_type = sgqlc.types.Field(String, graphql_name='entityType')
target = sgqlc.types.Field(String, graphql_name='target')
from_date = sgqlc.types.Field(DateTime, graphql_name='fromDate')
to_date = sgqlc.types.Field(DateTime, graphql_name='toDate')
__schema__ = sh_schema
class OperationOpType(sgqlc.types.Enum):
__schema__ = sh_schema
__choices__ = ('ADD', 'DELETE', 'UPDATE')
String = sgqlc.types.String
########################################################################
# Input Objects
########################################################################
class CountryFilterType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('code', 'term',)
code = sgqlc.types.Field(String, graphql_name='code')
term = sgqlc.types.Field(String, graphql_name='term')
class IdentityFilterType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('uuid', 'is_locked')
uuid = sgqlc.types.Field(String, graphql_name='uuid')
is_locked = sgqlc.types.Field(Boolean, graphql_name='isLocked')
class OperationFilterType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('ouid', 'op_type', 'entity_type', 'target', 'from_date', 'to_date')
class CountryFilterType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('code', 'term',)
code = sgqlc.types.Field(String, graphql_name='code')
term = sgqlc.types.Field(String, graphql_name='term')
class IdentityFilterType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('uuid', 'is_locked')
uuid = sgqlc.types.Field(String, graphql_name='uuid')
is_locked = sgqlc.types.Field(Boolean, graphql_name='isLocked')
class OperationFilterType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('ouid', 'op_type', 'entity_type', 'target', 'from_date', 'to_date')
ouid = sgqlc.types.Field(String, graphql_name='ouid')
op_type = sgqlc.types.Field(String, graphql_name='opType')
entity_type = sgqlc.types.Field(String, graphql_name='entityType')
target = sgqlc.types.Field(String, graphql_name='target')
from_date = sgqlc.types.Field(DateTime, graphql_name='fromDate')
to_date = sgqlc.types.Field(DateTime, graphql_name='toDate')
class OrganizationFilterType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('name',)
name = sgqlc.types.Field(String, graphql_name='name')
__field_names__ = ('name',)
name = sgqlc.types.Field(String, graphql_name='name')
class ProfileInputType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('name', 'email', 'gender', 'gender_acc', 'is_bot', 'country_code')
name = sgqlc.types.Field(String, graphql_name='name')
email = sgqlc.types.Field(String, graphql_name='email')
gender = sgqlc.types.Field(String, graphql_name='gender')
gender_acc = sgqlc.types.Field(Int, graphql_name='genderAcc')
is_bot = sgqlc.types.Field(Boolean, graphql_name='isBot')
country_code = sgqlc.types.Field(String, graphql_name='countryCode')
class TransactionFilterType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('tuid', 'name', 'is_closed', 'from_date', 'to_date', 'authored_by')
tuid = sgqlc.types.Field(String, graphql_name='tuid')
name = sgqlc.types.Field(String, graphql_name='name')
is_closed = sgqlc.types.Field(Boolean, graphql_name='isClosed')
from_date = sgqlc.types.Field(DateTime, graphql_name='fromDate')
to_date = sgqlc.types.Field(DateTime, graphql_name='toDate')
authored_by = sgqlc.types.Field(String, graphql_name='authoredBy')
########################################################################
# Output Objects and Interfaces
########################################################################
class AddDomain(sgqlc.types.Type):
__schema__ = sh_schema
__field_names__ = ('ouid', 'op_type', 'entity_type', 'target', 'from_date', 'to_date')
ouid = sgqlc.types.Field(String, graphql_name='ouid')
op_type = sgqlc.types.Field(String, graphql_name='opType')
entity_type = sgqlc.types.Field(String, graphql_name='entityType')
target = sgqlc.types.Field(String, graphql_name='target')
from_date = sgqlc.types.Field(DateTime, graphql_name='fromDate')
to_date = sgqlc.types.Field(DateTime, graphql_name='toDate')
class OrganizationFilterType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('name',)
name = sgqlc.types.Field(String, graphql_name='name')
class ProfileInputType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('name', 'email', 'gender', 'gender_acc', 'is_bot', 'country_code')
name = sgqlc.types.Field(String, graphql_name='name')
email = sgqlc.types.Field(String, graphql_name='email')
gender = sgqlc.types.Field(String, graphql_name='gender')
gender_acc = sgqlc.types.Field(Int, graphql_name='genderAcc')
is_bot = sgqlc.types.Field(Boolean, graphql_name='isBot')
country_code = sgqlc.types.Field(String, graphql_name='countryCode')
class TransactionFilterType(sgqlc.types.Input):
__schema__ = sh_schema
__field_names__ = ('tuid', 'name', 'is_closed', 'from_date', 'to_date', 'authored_by')
tuid = sgqlc.types.Field(String, graphql_name='tuid')
name = sgqlc.types.Field(String, graphql_name='name')
is_closed = sgqlc.types.Field(Boolean, graphql_name='isClosed')