You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the TableFilter type for domains, the type name sometimes is a string and sometimes it's the domain name. In v4 the type is always named as the domain.
For this table
dropschema if exists public cascade;
createschemapublic;
create extension if not exists citext with schema public;
dropdomain if exists public.email cascade;
createdomainpublic.email aspublic.citextcheck ( value ~ '^[a-zA-Z0-9.!#$%&''*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$' );
droptable if exists public.users cascade;
createtablepublic.users (
id textnot nullprimary key,
email public.emailnot null unique
);
[includes](http://[::1]:5678/graphql#): [String](http://[::1]:5678/graphql#)
Contains the specified string (case-sensitive).
[notIncludes](http://[::1]:5678/graphql#): [**String**](http://[::1]:5678/graphql#)
Does not contain the specified string (case-sensitive).
[includesInsensitive](http://[::1]:5678/graphql#): [**Email**](http://[::1]:5678/graphql#)
Contains the specified string (case-insensitive).
[notIncludesInsensitive](http://[::1]:5678/graphql#): [Email](http://[::1]:5678/graphql#)
Does not contain the specified string (case-insensitive).
[startsWith](http://[::1]:5678/graphql#): [String](http://[::1]:5678/graphql#)
Starts with the specified string (case-sensitive).
[notStartsWith](http://[::1]:5678/graphql#): [String](http://[::1]:5678/graphql#)
As you can see sometimes it named String, sometimes Email. Is this a bug?
The text was updated successfully, but these errors were encountered:
In the TableFilter type for domains, the type name sometimes is a string and sometimes it's the domain name. In v4 the type is always named as the domain.
For this table
I get this type when running ouch-my-finger
As you can see sometimes it named
String
, sometimesEmail
. Is this a bug?The text was updated successfully, but these errors were encountered: