Zeroic
2
Hey! 2 approaches that I have in mind:
- Have an isSponsored boolean field in your Job table and as your data source for the group that will show the job, use the :random item operator on the isSponsored jobs - Operators and comparisons | Bubble Docs
- Have a Sponsored count field in your Job table and increment whenever a job is shown in the group to a user. The data source for the group in this case can be a sponsored job with the least count value (keep in mind that this would use the sort by operator which works up till 50k items in the DB) - Operators and comparisons | Bubble Docs
Let me know if this is helpful