Is it worth migrating to the new option sets feature?

Hi everyone,

I’m trying to figure out whether it’s worth restructuring my database to fully embrace the new option sets feature that was recently released.

The upsides seems to be some performance gains and generally neater.
The main downside i can see is just time. If you have a complex app and previously maintained option sets as lots of data types, it’s not a small amount of work to restructure everything.

Keen to hear how others have tackled this. If you have restructured, was it ok? Was it worth it, performance wise, other wise? If you haven’t how come?

Thanks in advance

Dom

2 Likes

I thought about it, tested briefly and decided against it.

Yes, seems like speed benefits may exist, but the major drawback for me, is usually my options (not option sets) I created in the database were used to set relations to other datatypes or conditionals. The options sets seemed to lack an ability to relate to other tables easily.

For example, options from my database for product category such as “shirts” is easy enough to display in an option sets used for dropdown selection, however, relating this for sort or filter of search results for me was not as useful as when I could have “this products category is category selected” where my category is the options from the database (a datatype itself) which is a data field in the product data type.

I say, ‘to each his own’, on this one. Sounds to me like you already had your answer before posting, which is, it’s not worth it.

2 Likes

Thanks @boston85719. Agree the lack of ability to relate to other data types seems like a drawback.

I spoke to @romanmg (via email) and she was very positive about it and had converted a few of her apps over. Agreed it was a tedious process but worth it for the long term.

If anyone else has any thoughts please do share.

Thanks

1 Like

@boston85719 Two things:

  1. You can create a field within a data type, where the field type IS an option set (choice) or list of option set (choices). Your option set will appear in the list of field types. Bubble doesn’t really distinguish between your option sets and other data types, but they’ll be there.

  2. You can create expressions that treat the option set as an object. In your example, you were able to do “This product’s category is category selected” where “category” referred to one of your Category data types, right? You can still do that with option sets…

For example, say you have an option set called “Product Categories” with options for:

  • Fitness
  • Games
  • Art
  • Music
  • Misc.

And, in your Product data type, you’d need a field - let’s call it “Type” - with its field type set to this “Product Category” option set.

If you have a dropdown for the user to filter products by category, set it up to display the option set choices and the expression in a repeating group data source could be:

Search for Products, where Type = Dropdown’s value. Just like you would with the data types!

Or a condition in the RG cells:

When “Current cell’s product’s Type is Music” > change icon to a musical note (or something)

^^ although, in that case, I’d actually create a custom attribute under the Option set for image to upload different icons per choice and then dynamically display “This product’s type’s icon” in an image element :slight_smile:

Hopefully that shows you how to achieve the same structure as you did previously with data types. But, if I misunderstood you, please let me know!

Cheers,
Gaby

Coaching No Code Apps
Join our Facebook group for insider access to no-code development
Get professional development services
Enroll in expert-led courses and products

6 Likes

@romanmg Honestly I am just eagerly waiting to see this in one of your video’s … I have found options to be useful for future projects but ones I have already deployed work and are not broken.

Anything I could call a drawback is the fact you cannot edit or update a field in the option set unless it is in the editor, but that’s just the way I trying to use it not really a bubble issue.

@romanmg thanks for the explanation of how to get that set up. I am going to try and implement it as I have some filter options that I am not happy with the loading speed of and if I can get the option sets to relate to products etc. they will be a great help.

Cheers

1 Like

Hi, I am new to Bubble and am working to rebuild a database app I built on another platform within Bubble to see if its features are an improvement.

I have a fairly complex multi-level subject tagging system. I am curious whether it is better to build that as an Option Set or as a Data Type. Each entry in the database relates to multiple subjects. Subjects also relate to each other in that groups of subjects are organized under parent subjects.

I’ll need users to be able to search the data on single subjects as well as multiple subjects as an “and” or “or”.

Also, from the administrator perspective, I’d like to be able to run some bulk actions. For example, if I decide that every database entry that has Subject A also should have Subject B, I’d want to have Bubble automatically assign Subject B to all of those entries, rather than me having to go in and do them by hand.

I’ve built on a few different platforms and my experience always is that there are some unforeseen snags that you only learn once you’re fairly far into building. I’m expecting the same here, and would value any upfront, general advice on the best way to go.

Thank you.

Just wasted a lot of time using Options sets to load dropdowns and RG (because the load faster) because I thought it was a good idea for a multilanguage website but because you can’t sort the options dynamically I have had to use Data types. So for anyone who has a multi language website unless anyone has any ideas we have to stick to slow Data types.

Hoping that Bubble answers some of these questions and concerns around Option Sets. Hopefully there is a way to have the best of both worlds. Fast Options Sets that can be set as a snapshot of a database table or tables.