You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enclose all AgentQL query terms within curly braces `{}`. The following query structure isn't valid because the term "social\_media\_links" is wrongly enclosed within parenthesis `()`.
22
+
Enclose all AgentQL query terms within curly braces `{}`. The following query structure isn't valid because the term "social_media_links" is wrongly enclosed within parenthesis `()`.
23
23
24
-
```
25
-
( # Should be {
26
-
social_media_links(The icons that lead to Facebook, Snapchat, etc.)[]
27
-
) # Should be }
28
-
```
24
+
```
25
+
( # Should be {
26
+
social_media_links(The icons that lead to Facebook, Snapchat, etc.)[]
27
+
) # Should be }
28
+
```
29
29
30
-
The following query is also invalid since its missing the curly braces `{}`
30
+
The following query is also invalid since its missing the curly braces `{}`
31
31
32
-
```
33
-
# should include {
34
-
social_media_links(The icons that lead to Facebook, Snapchat, etc.)[]
35
-
# should include }
36
-
```
32
+
```
33
+
# should include {
34
+
social_media_links(The icons that lead to Facebook, Snapchat, etc.)[]
35
+
# should include }
36
+
```
37
37
38
-
You can't include new lines in your semantic context. The following query structure isn't valid because the semantic context isn't contained within one line.
38
+
You can't include new lines in your semantic context. The following query structure isn't valid because the semantic context isn't contained within one line.
0 commit comments