>>

What the Heck is an Eludris

Eludris is a user-centric Discord x Reddit mesh-like social media platform that values privacy through End-To-End Encryption where you can build a community that feels like your own.

To use Eludris, you can use the official web client.

One advantage that Eludris offers is that it allows and encourages people to make their own clients, toolings, bots, API wrappers and so on. Eludris facilitates this through the existence of the Eludris Community organisation where people can add their own creations and the Eludris Awesome repository, in addition to these docs.

Consider joining our Discord Server since that is currently mainly where we hang out, joke around and work on Eludris and Eludris related stuff.

>>

Reading the Docs

The documentation is straightforward, however here are some additional clarifications on some of the points where you can get confused.

>>

Omittability and Nullability

While reading the docs you might notice the use of the question marks next to field names or types, here’s an example of that.

FieldType
Foo?Integer
BarString?

Now, you may be wondering what these question marks are doing there. It depends on where the question mark is, if the question mark is next to the field name — like in Foo? — that field is omittable, meaning that it is not guaranteed to exist. Otherwise in a case where it exists it is guaranteed to be an Integer.

On the other hand if the question mark is next to the type — like in String? — it means that, while the field will always be present, its value can be null.