Django join without foreign key. Also, this question has been answered here.
Django join without foreign key.
May 22, 2015 · Django JOIN query without foreign key.
Django join without foreign key This article delves into this concept, exploring the advantages May 22, 2015 · Django JOIN query without foreign key. start_time fields, i. I have two tables table1 and table2 with following attributes-: Model. partner_id IS NULL; I came across this page that tells how to do custom joins, and I tried passing in a tuple of the column names to join in place of the column name to join, and that didn't Dec 5, 2023 · Operating without foreign key constraints. * FROM users u JOIN user_domain du ON du. I assume this is a bug in how Django selects whether to use a LEFT JOIN vs. order_by() #<-- important to avoid include sort fields . But perhaps we proceed nonetheless. If the join is defined on direct foreign keys, everything works fine. For example, as a foreign key, "categories" field in "Product" model references "name" field in "Category" model as shown below. Official Django Forum Join the community on the Django Forum. ForeignKey(House Jun 20, 2017 · There is no getting around the fact that Django admin inlines are built around ForeignKey fields (or ManyToManyField, OneToOneField). ForeignKey(One, null=True, blank=True, related_name='relateds') Then you can reverse-fetch the foreign keys: Returns a QuerySet that will automatically "follow" foreign-key relationships, selecting that additional related-object data when it executes its query. Though, here is what you might want, first, change your foreign key definition to this : related = models. You can add a second query to filter Airport_Frequency for each Airport Jan 21, 2024 · The current way to do this is with a Subquery and an OuterRef:. sample_id', and this the models I used. py-: class table1(models. tech/p/recommended. owner_id = 100 AND < some extra condition > Mar 11, 2021 · I have PostgreSQL database created with Django with lots of tables. name ,t2. BigAutoField(primary_key=True, serialize=False) created_at = models. However there is a common issue that i am facing when joining tables. hows. A table can Dec 17, 2020 · I’ve been using Django with my company’s project for about 3 years now, and have often wanted to create more advanced queries, without dipping into raw SQL They often have to do with legacy decisions on model layout A simplified example in my app: Customer: name legacy_id: TEXT (indexed) # ex: `"1234"` user = ForeignKey User: username legacy_id: INT (indexed) # ex: `1234` I would want to The first model has a field which is a foreign key to the second model, but it's implemented as a CharField, not as a ForeignKey. A row in a "parent" table may be referenced by one or more rows in a "child" table. another_field, U. . While Django doesn't seem to complain during . some_field, D. 4. an INNER JOIN in foreign key lookups. Try this: request_url = models. Download: Apr 6, 2020 · I am trying to filter queryset for a reverse foreign key. You can define a `foreign key` in a Django model using the `models. May 8, 2015 · Django: join two table on foreign key to third table? 0. from django. May 30, 2020 · As per the standard guideline that I attached above states that I should not use foreign key but rather just join them in the service manually. I need an efficient way to query the following: Let's say I have the following tables: Company | Product | Total # Users | Total # Unique Users. Ticket tracker Report bugs with Django or Django documentation in our ticket tracker. annotate(timezone=Subquery( StoreInformation. But Status has a Foreign Key to TestMatrix. users ON local_table. Model): project_id = models. Mar 18, 2017 · I am using Django for my website, and hence decided to use Django Rest Framework for building my REST APIs. all() Then, for any element of all_a which we’ll name an_a, an_a. I need to change id (primary key) field of users_user table, but there are a 9. My sql query is: SELECT u. Aug 1, 2019 · I know django doesn't allow joining without a foreign key relation and I can't specify a foreign key because there are entries in one table that are not in the other (populated using pyspark). raw query in Django Jul 14, 2015 · I have two tables from a legacy database that I want to access from a Django site. Jan 12, 2012 · This would have been easier if all Foreign Keys were defined within Testmatrix itself. SET_NULL, db_constraint=False) Jan 2, 2021 · Create the foreign key field as you’ve described; Assuming there’s only one entry in Airport for each ICAO, you could add the unique constraint to the ICAO field, then define the ICAO field in the Airport_Frequency table as a foreign key to that field. num from table_1 as t1 join table_2 as t2 on t2. A foreign key is a logical association of rows between two tables, in a parent-child relationship. joinfield import JoinField class Parent(models. Example: #django IRC channel Ask a question in the #django IRC channel, or search the IRC logs to see if it’s been asked before. Apr 1, 2024 · Django provides a powerful tool called Generic Foreign Keys for establishing relationships between models with a polymorphic nature. Then you can import JoinField and use it when defining your models: from joinfield. How to make an Inner Join in django without foreign key? 1. Hot Network Questions Jan 16, 2018 · I still can't completely understand this question. Model): bookid = models. See the documentation for more options. We have to go through the variable used as the foreign key to access the information associated with that join. Jul 21, 2014 · There is no foreign key defined between a Review and a Friendship, so in this case the most optimal way is probably what I've proposed. December 5, 2023. parent_order # And FK make one to many relationship, OneToOne ~> same way For example, to join a local table with a foreign table: SELECT * FROM local_table JOIN external. two QuerySets - merge/join on common foreign key of third model. Django-queryset join without foreignkey. all() is the set of all B related to an_a. Django Joining Tables. Jul 17, 2014 · SELECT * FROM friendship JOIN user ON friendship. Django ForeignKey just represent a relation, it can specify whether to use database constraints. I have two models books and authors but there is no foreign key relationship between them. first_name != '' How can I achieve this in Django ORM, if possible without using subquery. partner_id=l. (all tables only have "name" and "id"). Creating a left join in Django with null values. filter(store_number=OuterRef('store_number')). ForeignKey(CompanyModel, on_delete=models. filter(), but is there any way to avoid making another trip to the database to get the person_set? However, be aware that Django might want to create a foreign key constraint. When use_natural_primary_keys=True is specified, Django will not provide the primary key in the serialized data of this object since it can be calculated during Apr 17, 2015 · The problem is that I cannot connect these two with django. section_num support join tables query over two tables without foreign key → Support join tables query over Django is a Sep 22, 2013 · So I'm learning Django and trying to get values throught foreign key by using Django ORM functions only. id; Remember, when joining tables without a foreign key, such as with Supabase's auth. ForeignKey` field. filter(author_set__blog__pk=1) I wasn't paying attention to your related name, so the code above (revised) now uses the proper related name. Models: class Books(models. 在本文中,我们将介绍如何在Django ORM中进行连接操作,即使没有外键和原始查询。 阅读更多:Django 教程. models import Subquery, OuterRef Store. The Django ForeignKey is different from SQL ForeignKey. The first is to grab all the Makes that contain MakeContents where published = True, and the second is to grab all the MakeContents where published = True. all() # Got all the pos (you can do filter or something else # then with the object pos, you can get the parent_order like: order = pos. I want to have columns- program_name and is_active from SchPrograms model with parameter_name, parameter_description from VisVisitParameters model in django admin. IntegerField(primary_key=True) if you do not want to modify the table,then you can use raw query,please refer the link below. #django IRC channel Ask a question in the #django IRC channel, or search the IRC logs to see if it’s been asked before. Oct 6, 2023 · Writing a query on A automatically gives you access to both sets of related objects. How to group records in Django ORM? 16. CASCADE, null=True) type = models. Are you using one-to-one relationships, and your table pk are the foreign keys? (If not, post your schema in the question). Django - join between different models without Mar 23, 2018 · Hi i'm working on django. id and t2. Models # Source A class SourceACompany(models. Model): pass class SourceADirector(models. Now probably this is just a silly asumption and I probably only need more experience on Oct 15, 2015 · OK, I would recommend to stick to the default user system from Django and build one-to-one profiles of the specific type where needed. we want join that every entry of A shown side by related C table object. Also there are multiple foreign keys between tables. I looked it up but I didn't find a solution which matches my requirements. Django ORM simple Join. In that case you are relying on your application code to maintain data integrity and not allow a foreign key from Product to CodeInfo where the codes don't actually match. The following example sets the field NULL upon deletion of the foreign key. ForeignKey(Department, on_delete But in the third query, Django unexpectedly changes the JOIN with movie from a LEFT JOIN to an INNER JOIN, and thereby dropping the event without a screening from the result set. domain_email = u. That way, you'll get o. Mar 12, 2015 · If you don't specify a foreign key in your model, the database doesn't have any notion of linking the two tables. select_related('position', 'position__reports_to'). Feb 14, 2020 · So you need to declare Employee. Jan 6, 2018 · Without the "select_related" in the initial query, How to obtain data from two tables and that two table join using Foreign-key in the Django rest framework. user_id = external. Jun 3, 2021 · In your models add related_name arguments for foreign keys, so that you can retrieve the objects related to the House() instance. head_user_id=user. Mar 21, 2014 · I want to select records from these tables using inner join. Model): company = models Jun 19, 2021 · SELECT DISTINCT tree. id, tree. filter(apples__tree__isnull=False). They can depend on each other and exist mainly to give me a convenient organisation of my files and namespaces. id Untill now i have written 2 queries and they are working but I think they are not the best practices to do it: Tree. If you don't need the artist object for something else in your code you should use this approach. ForeignObject(RtbdCreativeStatus, to_fields=['advertiser_id', 'creative_id'], related_name='abc', on_delete=models. However, if I understand your goal, it's to avoid having to manage "date integrity" between your Diary. CharField(max_length=64) class Child(models. Also, this question has been answered here. And there’d be no label showing a representation of a specific foreign record: Joining without a foreign-key constraint. values_list('name', 'company_name') May 23, 2019 · how to make statement of join on in django 1. objects. 3a1 and up support this via ForeignKey's on_delete argument. Main reason is they suggest this, is possibly to avoid tight coupling making it look like microservices Dec 5, 2020 · Django ORM join without foreign keys and without raw queries. title FROM apple JOIN tree ON apple. However when the joins are defined on non-direct foreign key fields, things go haywire. location_id. object_id WHERE l. *, du. IntegerField(primary_key= Django 没有外键和原始查询的ORM的连接. entity_id) WHERE C. But with 2 model linked with . str, t2. Model): house_number = models. filter(client__id=pk) job = Job. distinct() How to make a foreign key relation using a field other than the primary key with a post request? For example, if you have users and items, how to make a new item with a relation to an existing user with only the username of the user, not the id (primary key)? models. DateTimeField(auto_now_add=True) expected_revenue = MoneyField Apr 23, 2011 · Django join on multiple foreign fields (left join) 1. tree = tree. How to find distinct field values from queryset? 14. Django Discord Server Join the Django Discord Community. id) LEFT OUTER JOIN DraftMessageModel AS D ON (C. AutoField(primary_key=True) oOrder_number = models. Django doesn't support the select_related() method for reverse foreign key lookups, so the best you can do without leaving Python is two database queries. And this `ForeignKey` field takes at least two arguments: ```python department = models. CharField(max_length=50) Jan 7, 2021 · I will add the answer as future reference for other users, since the similar question linked in the comments is not very detailed. ForeignKey(UserActivityLink, to_field='url_description', null=True, on_delete=models. This is a performance booster which results in (sometimes much) larger queries but means later use of foreign-key relationships won't require database queries Jul 6, 2023 · ### What is a Foreign Key in a Django Model? The foreign key is used to connect two tables and establishes the `many-to-one` relationship. try this code. parent_order # Or for p in pos: or = p. Django ORM(对象关系映射)是Django框架中的重要组件,用于管理数据库中的数据。它提供了一种便捷的 You could have an additional foreign key from Product to CodeInfo. Find rows which have duplicate field values; 13. distinct() Tree. Is it possible to use select_related on the first model to access properties of the key'd second model? Here's an example: The author_id column wouldn’t have the foreign-key icon, and its contents would be just the plain numbers stored on that table. username, < some extra fields > FROM CaseModel AS C LEFT OUTER JOIN User AS U ON (C. all(). Before I explain the issue, let me try to explain what I am trying to achieve. annotate( company_name=Subquery( Company. Jan 23, 2018 · Here's the key difference between this example and some other questions I read about: my models don't enforce a foreign key, so I can't use select_related() I need to create a view that shows a join between two querysets in each one. Here are my two models:- class BranchModel(basemodel. OneToOneField, you can do it like: pos = Position3. partner_id AND q. Foreign key queries can be used to join two tables together and to perform operations on the data in the two tables. I am able to have those columns which i am using with return in each of these models. For example: {% for x in data %} {{ x. It can be used to map the fields with to_fields. filter(testmatrixid__productid=pid). CharField('Furniture Type', max_length=50) class People(models. Overview. email without using select_related how do i write django ORM query to same record as my sql query. I know peewee and i'll do something like the following: Oct 9, 2015 · I don't know why u are doing this, but, I think this can solve your problem: mid_list = Trans. Let´s say my models are: class Order(models. and May 5, 2023 · Django : Django JOIN query without foreign keyTo Access My Live Chat Page, On Google, Search for "hows tech developer connect"I promised to share a hidden fe Oct 17, 2024 · I’ve been really trying hard to write a JOIN directly but it seems like that might not be possible based on this other thead. users. db. I've got models defined as follows Nov 10, 2020 · You can pass foreign keys and even nested foreign keys to the select_related method eg select_related('book__author', 'publisher',) you can add as many foreign keys as you want, if you call select_related() without any argument then it will follow all the foreign key relationship which is not recommended at all because you'll be complicating Oct 31, 2020 · 這篇Blog會簡單介紹 ORM 的觀念,以及用 ORM 來 增、查、刪、改 資料庫表。. PROTECT) Feb 4, 2019 · I'm using Django REST framework, I'm stuck in Inserting foreign-key data into another table. The Django ORM won't be able to span the relationship between the two tables without you doing extra work — either in raw SQL or by making multiple ORM queries that you join together manually in Python. models don't have relation between them so i can't use select_related. SET_NULL) Mar 7, 2010 · A column (or set of columns) which links the two tables IS a foreign key - even if it doesn't have a constraint defined on it (or even an index) and isn't either of the tables' primary key (although in that case you can end up with a weird situation where you can get unintended cartesian products when joining, as you will end up with a set vs Aug 2, 2024 · SELECT C. CASCADE) There is a from_fields parameter as well. Model): column = models. query_id = B. One hack would be to fake that migration so that the constraint isn't created in the db. Nov 27, 2008 · Late, I know, but it's mostly a matter of choice and organisation. name }} {% endfor %} The above references ALL of the names in the table that were the result of the join on foreign key. So, let's imagine I want a view with all owners named John with a dog. i have a relationship model and i want to join both fields so that i can select the user that maches the query. day and Sleep. Download: Aug 24, 2010 · This is probably as simple as declaring a ForeignKey and creating the column without actually declaring it as a FOREIGN KEY. How to find second largest record using Django ORM ? 12. BaseModel): company = models. values_list('mid', flat=True) rowlist = Sys. I want to get the SQL LIKE THIS 'SELECT * FROM genome AS A JOIN metadata AS B ON A. filter(mid__in=mid_list) Oct 27, 2016 · Assuming that the foreign key to Author has the name author_id, (if you didn't specify the name of the foreign key column for ForeignKey field, it should be NAME_id, if you specified the name, then check the model definition / your database schema), Jun 24, 2011 · It seems like your models are not very "django" friendly. user = models. By default, Django uses the primary key of the related object. distinct() we prevent that the same Human is returned multiple times (once per related Jacket). Please refer the scenario below: Please refer the scenario below: As given below code, I want to insert data in template table and also insert foreign-key relationship into template_owners table using the single post request. Sep 13, 2021 · Django JOIN on nested model Foreign key with look up field. We might write the same SQL query as before. Retrieve values from the JOIN of two models without foreign key (Django) Nov 16, 2018 · This is your query: Journey . If you reference a different field, that field must have unique=True. How to use Q objects for complex queries? 15. How to perform join operations in django ORM? 11. b_set. owner_id = U. date() Sep 11, 2019 · I was wondering if we can apply join in django ORM without foreign keys (I know its not the best practice but since its pre-made schema, I cant change it). I have "internal" apps that are not ever intended for external use. Dec 26, 2023 · Column 1 Column 2 Column 3; Django ORM Foreign Key Query: A foreign key is a field in a table that references the primary key of another table. How to filter FileField without any file? 10. g. e. filter( apples__tree__in=Apple. start_time. 2) I tried using something like: entries = Status. I am trying to run a join query using foreign key constraint. The net takeaway is: To span a relationship, just use the field name of related fields across models, separated by double underscores, until you get to the field you want. 0 Joining Models in Python DRF Serializer without introducing Foreign key. 11, i want to create this statement : select t1. Apr 4, 2012 · Django 1. By using . join 2 tables that have no foreign key to eact other. id, C. 7. object_id IS NULL and l. Model): order_id = models. Joining Models in Python DRF Serializer without introducing Foreign key. Model): parent = JoinField(Parent, to_field='column') Django : Django ORM join without foreign keys and without raw queries [ Beautify Your Computer : https://www. Jul 5, 2017 · It might be used in this case for defining foreign key for composite primary key or unique keys. Oct 24, 2018 · I´m trying to join Database columns in Django, that do have a corresponding value but that value is not a foreign key. Example taken from my code. ForeignKey(User, blank=True, null=True, on_delete=models. object_id=l. Django join tables with ForeignKey. ForeignKey(db_column=source_name', to_field='name') Mar 9, 2015 · Maybe I'm not explaining the problem clear enough: I can get the Resource Uri using tastypie, But If I do it as you explained (Or as I did in the first code example), There is by default a redundant join query generated behind the scenes (Which I don't need, Since I only need the resource uri of the section, Which I can get from the Question Table without a join , by taking the section_id When use_natural_foreign_keys=True is specified, Django will use the natural_key() method to serialize any foreign key reference to objects of the type that defines the method. objects . ForeignKey, because some of the wikispy_edit ip values do not have a corresponding value in wikispy_rdns. /manage. Join 2 tables in django. Jan 11, 2013 · I'm learning Django and trying to get the hang of querying foreign keys across a bridging table. 了解Django ORM. , the redundancy in a foreign key relation when that relation is really defined by Diary. obj_id, o. Apr 3, 2017 · You can use Django's "prefetch_related" and Django's "related_name". class LogEntry(Model): source_name = models. name=B. Model): ab Thanks, what if we need name of foreign key on related table, suppose table A is related to B and B is related to C. I have 1 question though. annotate(Total_kilo=Sum('kilo')) Feb 16, 2014 · I'm currently working on a Django library to manage images of multiple resolutions (django-multires) where I am stuck optimizing a reserve relationship query. Latter on you can differentiate between the users based on the value of the foreign key or you could implement permissions which are tied to the user type Sep 20, 2018 · Thanks. id = D. in Employee Model. Apologies if this is a duplicate, I haven't been able to find the answer by searching. Jul 25, 2005 · many times I apply rules on a key value I also join on that key while if it was integer I'll have 2 different keys one to join and one to condition, multiply this by a couple and you get insted of a 100 lines query a 200 lines query, that's all i'm saying. obj will work if the object exists, and--I think--raise an exception if you try to load an object that doesn't actually exist (probably DoesNotExist ). ForeignKey(House, related_name='house_furniture', on_delete=models. Sep 22, 2018 · I am having problem with list_display/joining two table for django admin interface. Overall Goal I have an ETL job that unifies 2 or 3 different datasources into a single table and I want to annotate a query with some “far away” data. but I can't do that without rawQueryset and raw SQL. values_list("tree") ). name? Sep 3, 2020 · I want to implement a "following" function on my Profile model in django. py If I'm getting people with a QuerySet, I can join (and avoid a second trip to the database) with position and report_to using Person. , if you have just the primary key of a foreign object, and not the model instance itself, the following queries look very similar: job = Job. 1. py migrate , it doesn't allow me to insert such objects using its ORM, which is annoying. A foreign key typically suggests how you should JOIN tables in most queries. I've got 2 tables: User Table (default Django auth_user system table) and Student Table containing student_id, user_id(FK) and nr_indeksu (it's a number containing additional info for student specific information). product_id = t1. Jan 14, 2022 · Django - join between different models without foreign key. id WHERE user. EmployeeId = models. how can i join two models without foreign key? The columns for JOIN is not unique so it can't be PK and Foreign Key. values('name') ) ). – Sep 17, 2014 · In your models Device and History models are related with a foreign key from History to DeviceModel, this mean when you have a History object you can retrieve the Device model related to it, and viceversa (if you have a Device you can get its History). Hot Network Questions. I am new to django 2. day == Sleep. advertiser_creative_id = models. Store and StoreInformation have a field called store_number. values('store_timezone')[:1] )) Aug 2, 2024 · The select_related method is used to follow the foreign key relationship and retrieve the related User instances. filter(client_id=pk) However, underneath the first query accesses an attribute on the related object (double underscore) and performs an OUTER JOIN. 33. EmployeeId as primary key and remove unique key because Primary key is unique itself. 0. This works because we make a LEFT OUTER JOIN on the Jacket model, and we filter out the ones without a related Jacket with jacket__isnull=False. If you have: all_a = A. “Django ORM 模型層 ForeignKey(多對一)” is published by 承諺 Harry Tsai in 我的後 Apr 9, 2014 · Take a look at the Django documentation section about Lookups that span relationships. Dec 17, 2021 · Hi All, I want to learn the proper Django way of doing a Joint between 2 related models in Django, and I’m struggling a lot to do this, at the end I want to get just one queryset that I can render to an HTML page class Leads(models. In the documentation, if I got it correctly, it says that select_related performs a sql join under the hood. They look like this: Table A id (int, primary key) name (string, unique) Table B id (int, primary key) name record_date (name, record_date are unique together) How do I tell my Django model that Table A has a one-to-many relationship with B on A. In this article, we covered how to perform a left outer join using the Django ORM without a foreign key relationship between the models. models. values('vrn', 'j_user__uid', ) . Dec 13, 2015 · SELECT * FROM ObjectImportQueue q LEFT OUTER JOIN ObjectLock l ON q. html ] Django : Django Jan 23, 2018 · Here's the key difference between this example and some other questions I read about: my models don't enforce a foreign key, so I can't use select_related() I need to create a view that shows a join between two querysets in each one. users, you'll need to use alternative methods like explicit joins or subqueries to correlate the data. 3. html ] Django : Django Apr 11, 2012 · User. However, until you've tested this in anger and done some analysis to confirm is is a critical slow point in your system, I'd heed the words of Donald Knuth: Mar 18, 2015 · The field on the related object that the relation is to. join two tables in django ORM using foreign key. models import Subquery, OuterRef Employee. Jan 20, 2017 · Django JOIN on nested model Foreign key with look up field. Oct 12, 2021 · I have two tables and want to join them. This again gave me a queryset as a result of joining Testmatrix and Status, but not Testcases. filter(location=OuterRef('location')). Thanks! Jan 2, 2021 · Django JOIN query without foreign key. django wise this is better: Oct 24, 2022 · Note that the _id in the artist parameter, Django stores foreign keys id in a field formed by field_name plus _id so you can pass the foreign key id directly to that field without having to go to the database again to get the artist object. Django : Django ORM join without foreign keys and without raw queries [ Beautify Your Computer : https://www. We used the Q object to filter the results based on the owner field and the select_related Install via pip: pip install django-joinfield Put joinfield in INSTALLED_APPS in your settings file. Django prefers your table (models) primary keys to be unique auto increment integers and not foreign keys. The sql query I provided might be wrong, it's just to convey what i'm trying to express Jul 22, 2014 · E. class Furniture(models.
xoxa spnq yaar fffkjl hirxc trxw cposdm gdgps pyaly pqr
{"Title":"What is the best girl
name?","Description":"Wheel of girl
names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}