googleapis / googleapis/google-api-nodejs-client

Full text search doesn't work when using 'in parents' option

Open
#3,443 1 comment 0 reactions 1 assignee Claimed by @sofisl View on GitHub
priority: p2 type: bug
Dominant language
TypeScript
Stars
12.2k
Forks
2k
Avg merge
1d 9h
Merged PRs (30d)
24

Description

Thanks for stopping by to let us know something could be better!

Environment details

Programming language: go
OS: MacOS, Linux
Language runtime version: 1.21.6
Package version: v0.167.0
Steps to reproduce

Make a query with full text search that searches inside Google Docs file and add "in parents" option.
Such as

Query:

`fullText contains 'часом знемагаю' and trashed = false and mimeType = 'application/vnd.google-apps.document' and '1234567' in parents`

Result:

```
{
"files": []
}
```

Result is empty files list. But if remove "in parents" part and make another search I get this file. And that file has an ID in parents field.

Query:

`fullText contains 'часом знемагаю' and trashed = false and mimeType = 'application/vnd.google-apps.document'`

Result:

```
{
"files": [
{
"parents": [
"1234567"
]
}
]
}
```

Interesting part is that it returns file if full text search query contains words from file's name.

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.