Ratel doesn't show types

Hi,

I am using Ratel to alter my scheme and for some reason, it doesn’t show the type of the predicates I select for each type

You can ignore that, this wasn’t updated recently to reflect the changes in the Type System.

How can I know that a uid predicate is linked to the right type?

<Hashtag.keyweord>: string @index(term, trigram) @upsert .
<HashTag.attached_to>: [uid] @count 
<Repository.name>: string @index(hash, trigram) .
<Repository.description>: string @index(fulltext) .
<Repository.created_on>: datetime @index(day) .
<Repository.last_updated>: datetime @index(hour) .
<Repository.object_store>: uid .
<Repository.is_public>: bool .
<Repository.stars>: int .
<Repository.tags>: [uid] .
<Repository.active_memberships>: [uid] @count .

type <Hashtag> {
	Hashtag.keyweord
	Hashtag.attached_to
}
type <Repository> {
	Repository.name
	Repository.is_public
	Repository.created_on
	Repository.last_updated
	Repository.stars
	Repository.tags
	Repository.active_memberships
	Repository.object_store
}

I want hashtags to be attached to repositories and repositories to have several hashtags.

Every time I click on the change type button, the uid predicate resets to the first type in the dropbox, and I am not sure if it is saved after changing it to the right type.

By schema? you don’t. Only the dataset can answer that. That means you have to know your dataset structure well. The GraphQL feature tho can give you that information cuz it is a very typed system and it forces you to run according to the music (the schema).

Again, please ignore that collum. We gonna remove it as soon as possible.

:+1:t4: