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
update 2016-10-17: there's no api for star/tag in web api. we can only do remark name by api.
star
tag
remark
according to #14
Contact : { remark() : string remark(string) : string }
type TagInfo = { any: boolean } tag() : string[] tag(tags: TagInfo): string[] star() : boolean star(boolean) : boolean static findByTag(tags: TagInfo) static findByStar()
const contact = Contact.load(message.get('from')) contact.remark('Remark Memo Name')
contact.tag({tag1: true}) contact.tag({tag1: false}) contact.tag() : string[] contact.star(true) contact.star(false) contact.star() : boolean
const contact = Contact.findByTag({tag1: true}) const starContacts = Contact.findByStar()
The text was updated successfully, but these errors were encountered:
#34 Contact.find && findAll
8863a8e
#34 add example for contact-bot
a5759be
#34 add Contact.remark(newRemark: string) support
Contact.remark(newRemark: string)
596943f
95bbccb
#34 sync local remark name
2a6655f
contact.remark('new memo name') should work now.
contact.remark('new memo name')
Sorry, something went wrong.
huan
No branches or pull requests
update 2016-10-17: there's no api for
star
/tag
in web api. we can only doremark
name by api.according to #14
type TagInfo = { any: boolean }tag() : string[]tag(tags: TagInfo): string[]star() : booleanstar(boolean) : booleanstatic findByTag(tags: TagInfo)static findByStar()Tag / Star / Remark Contact
contact.tag({tag1: true})contact.tag({tag1: false})contact.tag() : string[]contact.star(true)contact.star(false)contact.star() : booleanFind Contact
const contact = Contact.findByTag({tag1: true})const starContacts = Contact.findByStar()The text was updated successfully, but these errors were encountered: