TypeScript
appwrite types ./appwritetypes
ℹ Info: Detected language: ts
ℹ Info: Directory: ./appwritetypes does not exist, creating...
ℹ Info: Found 12 tables: contact-forms, testimonials, profiles, user-arts, user-emergency-info, art-forms, user-events, events, competition-history, probe, hobbies, instructors
ℹ Info: Found 71 columns across all tables
ℹ Info: For detailed error pass the --verbose or --report flag
✗ Error: ejs:24
22| <% const propertyName = strict ? toCamelCase(attribute.key) : attribute.key; -%>
23| <% const isValidIdentifier = /^[a-zA-Z_$][a-zA-Z0-9_$]*$/.test(propertyName); -%>
>> 24| <% if (isValidIdentifier) { %><%- propertyName %><% } else { %>"<%- propertyName %>"<% } %>: <%- getType(attribute, collections, collection.name) %>;
25| <% } -%>
26| }<% if (index < collections.length - 1) { %>
27| <% } %>
Unknown attribute type: varchar
TL;DR
The CLI is breaking due to an unknown attribute type 'varchar'. You should try updating to the latest version which may resolve this issue.try updating to latest version
Recommended threads
- Substring lookup for array elements
Hello, Is substring look up possible for array of strings? ```js Query.contains('product_names', [chair]), ``` this only works if I have the exact item name. `...
- Weird Query Error
In next js I am getting this error in the image ```js queries: [ Query.equal('title', TitleId), Query.limit(10) ] ``` am I doing something...
- Many2Many loading, not receiving list
Hi everyone! Im having a bit of trouble while editing single rows in the DB. When selecting a value of my many2many it keeps loading, see screenshot. On some ...