-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why does non-optional types have optional: true? #65
Comments
@arturdev can you help me in this? |
What is this? And what help do you need? |
i made an update to ask for requiredProperties just like indexedProperties. |
I still don't understand what is the problem and what you want to achieve. |
Currently, there is no way to specify required properties. Why I need this is because of realm sync. Realm sync is used to sync ream data on MongoDB cloud which is realm's database. So in order to make it compatible with realm sync, i added some updates in the code and sent it to you. |
subtype {
type = string;
indexed = NO;
isPrimary = NO;
array = NO;
set = NO;
dictionary = NO;
optional = YES;
}
type {
type = string;
indexed = NO;
isPrimary = NO;
array = NO;
set = NO;
dictionary = NO;
optional = YES;
}
swx_stag {
type = string;
indexed = NO;
isPrimary = NO;
array = NO;
set = NO;
dictionary = NO;
optional = YES;
}
The text was updated successfully, but these errors were encountered: