We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Searching conversations with date fields should return matching conversations
The use of any date field, in any way, in conversations searc,h leads to an empty result
try { const conversations = await client.conversations.search({ data: { query: { 'operator': Operators.AND, 'value': [ { 'field': 'contact_ids', 'operator': Operators.EQUALS, 'value': userId }, { 'field': 'open', 'operator': Operators.EQUALS, 'value': true }, { 'field': 'created_at', 'operator': Operators.LESS_THAN, 'value': Date.now() }, ] }, }, }) return conversations } catch (error) { console.error('Error searching conversations:', error.message) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version info
Expected behavior
Searching conversations with date fields should return matching conversations
Actual behavior
The use of any date field, in any way, in conversations searc,h leads to an empty result
Steps to reproduce
Logs
The text was updated successfully, but these errors were encountered: