Replies: 3 comments 10 replies
|
Nevermind found the solution: $addressBook->query([
['TEL', ['TYPE' => '/FAX/']]
]);😅 |
0 replies
|
Actually that did return a subset of my contacts, but only one had a fax number. So I tried: $addressBook->query([['TEL', [['TYPE', '/FAX/'], 'matchAll' => true]]]);But this returned 0 contacts. So any help is appreciated 🙌 |
3 replies
|
Ok, that one I tried too. It results in an: I also tried: $addressBook->query([['TEL', ['//', ['TYPE', '/FAX/']]]]);Thanks, I'll check that out 👍 |
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi!
I'm trying to get all contacts with a fax number attached.
I tried the following query:
But I just get an error:
Has anyone an idea for a better query?
Thanks!
All reactions