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
We have recently added a couple of new classes including "TextDocument". I noticed that some functionalities like .select do not work with this class. I am not sure why as methods like select should probably work agnostic to the class.
so currently
// return a broken query
textBlock.select(
"document.TextDocument.mimeType"
)
while
// return a good query
textBlock.select(
"document.GoogleDoc.mimeType"
)
So i am wondering what the issue is and if there is a way to make these methods generic enough, so we do not have to adjustments everytime there is a new class added to the database.
The text was updated successfully, but these errors were encountered:
We have recently added a couple of new classes including "TextDocument". I noticed that some functionalities like
.select
do not work with this class. I am not sure why as methods like select should probably work agnostic to the class.so currently
while
So i am wondering what the issue is and if there is a way to make these methods generic enough, so we do not have to adjustments everytime there is a new class added to the database.
The text was updated successfully, but these errors were encountered: