On this page
Get Involved
Query: Connections with sign-up disabled
Description
Explore which connections have not disabled the sign-up option, providing insights into potential areas of vulnerability or increased traffic. This can be useful for identifying and managing potential security risks or resource allocation.
Query
Tables used in this query:
SQL
select id, name, strategyfrom auth0_connectionwhere options ->> 'disable_signup' = 'false';
select id, name, strategyfrom auth0_connectionwhere json_extract(options, '$.disable_signup') = 'false';