Field with spaces or multi word field #259
-
Hi, I have field name that consists of multiple words. When I tried to use this plugin in dataview query, it is throwing parsing error. I couldn't find any usage related to this in documentation. Wondering if this is supported? Thank you |
Beta Was this translation helpful? Give feedback.
Answered by
blacksmithgu
Jun 4, 2021
Replies: 2 comments 4 replies
-
@blacksmithgu can you pls help on this? Thanks! |
Beta Was this translation helpful? Give feedback.
2 replies
-
Dataview doesn't recognize spaces in field names in queries, to be specific - you have two options:
|
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
asknet
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Dataview doesn't recognize spaces in field names in queries, to be specific - you have two options:
film-name
. In general, to get the dataview query-friendly name, make it all lower case and replace spaces with dashes ("hello there" -> "hello-there", etc).row["field name"]
. So, for example,row["Film Name"]
.