JustKira
JustKira
Explore posts from servers
HHono
Created by JustKira on 3/17/2025 in #help
How to change to FETCH client of Hono to Ky.js or Axios
sadge
25 replies
HHono
Created by JustKira on 3/17/2025 in #help
How to change to FETCH client of Hono to Ky.js or Axios
Are you suggesting that I need to build it myself, or is there no way I can use an existing client?
25 replies
HHono
Created by JustKira on 3/17/2025 in #help
How to change to FETCH client of Hono to Ky.js or Axios
but how does that work with hono
25 replies
HHono
Created by JustKira on 3/17/2025 in #help
How to change to FETCH client of Hono to Ky.js or Axios
wrench looks cool
25 replies
HHono
Created by JustKira on 3/17/2025 in #help
How to change to FETCH client of Hono to Ky.js or Axios
can u explain what u are trying to do.
25 replies
HHono
Created by JustKira on 3/17/2025 in #help
How to change to FETCH client of Hono to Ky.js or Axios
not sure how to get it working
25 replies
HHono
Created by JustKira on 3/17/2025 in #help
How to change to FETCH client of Hono to Ky.js or Axios
// Docs
import ky from 'ky';

const user = await ky('/api/user').json();
// Docs
import ky from 'ky';

const user = await ky('/api/user').json();
i expect it to look like this
const createUserResult = await locals.api.v0.user.$post({
json: form.data
}).json()
const createUserResult = await locals.api.v0.user.$post({
json: form.data
}).json()
25 replies
HHono
Created by JustKira on 3/17/2025 in #help
How to change to FETCH client of Hono to Ky.js or Axios
still the same
25 replies
HHono
Created by JustKira on 3/17/2025 in #help
How to change to FETCH client of Hono to Ky.js or Axios
const createUserResult = await locals.api.v0.user.$post({
json: form.data
});

const result = await createUserResult.json();
const createUserResult = await locals.api.v0.user.$post({
json: form.data
});

const result = await createUserResult.json();
25 replies
HHono
Created by JustKira on 3/17/2025 in #help
How to change to FETCH client of Hono to Ky.js or Axios
ya but it seems doesn't change anything
25 replies
HHono
Created by JustKira on 3/14/2025 in #help
How to Connect to Services using context
ouu intresting
19 replies
HHono
Created by JustKira on 3/14/2025 in #help
How to Connect to Services using context
does types work?
19 replies
HHono
Created by JustKira on 3/14/2025 in #help
How to Connect to Services using context
well getDb() check if there is active client with connection if so it return it if not it create new cliecnt with connection and return it
19 replies
HHono
Created by JustKira on 3/14/2025 in #help
How to Connect to Services using context
well can't i init db connection and call getDb inside middelware to get global instance?
19 replies
HHono
Created by JustKira on 3/14/2025 in #help
How to Connect to Services using context
so in a nutshell im doing same getDb flow but without needing to type getDb every single time
19 replies
DTDrizzle Team
Created by JustKira on 4/27/2024 in #help
Circular Reference Error when Using Self-Reference in Table Definition with Drizzle-ORM
import { serial, text, integer, foreignKey, pgTable, AnyPgColumn } from "drizzle-orm/pg-core";
export const user = pgTable("user", {
id: serial("id"),
name: text("name"),
parentId: integer("parent_id").references((): AnyPgColumn => user.id)
});
// or
export const user = pgTable("user", {
id: serial("id"),
name: text("name"),
parentId: integer("parent_id"),
}, (table) => {
return {
parentReference: foreignKey({
columns: [table.parentId],
foreignColumns: [table.id],
name: "custom_fk"
}),
};
});
import { serial, text, integer, foreignKey, pgTable, AnyPgColumn } from "drizzle-orm/pg-core";
export const user = pgTable("user", {
id: serial("id"),
name: text("name"),
parentId: integer("parent_id").references((): AnyPgColumn => user.id)
});
// or
export const user = pgTable("user", {
id: serial("id"),
name: text("name"),
parentId: integer("parent_id"),
}, (table) => {
return {
parentReference: foreignKey({
columns: [table.parentId],
foreignColumns: [table.id],
name: "custom_fk"
}),
};
});
found this on Drizzle docs https://orm.drizzle.team/docs/indexes-constraints which solved my problem
2 replies
DTDrizzle Team
Created by JustKira on 1/19/2024 in #help
Drizzle ORM: Inferring Relation multiple Many to one relation
Schema
export const courses = mysqlTable("courses", {
id: varchar("id", { length: 128 })
.primaryKey()
.$defaultFn(() => `cou-${createId()}`),
name: varchar("name", { length: 128 }).unique().notNull(),
description: text("description"),
});

export const courseRelations = relations(courses, ({ many }) => ({
nodes: many(nodes),
dependentCourses: many(course_dependencies, {
relationName: "depended_courses",
}),
courseDependencies: many(course_dependencies, {
relationName: "course_dependencies",
}),
}));

export const course_dependencies = mysqlTable(
"course_dependencies",
{
id: varchar("id", { length: 128 })
.primaryKey()
.$defaultFn(() => `cou-dep-${createId()}`),
courseId: varchar("courseId", { length: 128 }).notNull(),
dependencyCourseId: varchar("dependencyCourseId", {
length: 128,
}).notNull(),
},
(t) => ({
unq: unique().on(t.dependencyCourseId, t.courseId),
})
);

export const course_dependenciesRelations = relations(
course_dependencies,
({ one }) => ({
course: one(courses, {
fields: [course_dependencies.courseId],
references: [courses.id],
}),
courseDependency: one(courses, {
fields: [course_dependencies.dependencyCourseId],
references: [courses.id],
}),
})
);
export const courses = mysqlTable("courses", {
id: varchar("id", { length: 128 })
.primaryKey()
.$defaultFn(() => `cou-${createId()}`),
name: varchar("name", { length: 128 }).unique().notNull(),
description: text("description"),
});

export const courseRelations = relations(courses, ({ many }) => ({
nodes: many(nodes),
dependentCourses: many(course_dependencies, {
relationName: "depended_courses",
}),
courseDependencies: many(course_dependencies, {
relationName: "course_dependencies",
}),
}));

export const course_dependencies = mysqlTable(
"course_dependencies",
{
id: varchar("id", { length: 128 })
.primaryKey()
.$defaultFn(() => `cou-dep-${createId()}`),
courseId: varchar("courseId", { length: 128 }).notNull(),
dependencyCourseId: varchar("dependencyCourseId", {
length: 128,
}).notNull(),
},
(t) => ({
unq: unique().on(t.dependencyCourseId, t.courseId),
})
);

export const course_dependenciesRelations = relations(
course_dependencies,
({ one }) => ({
course: one(courses, {
fields: [course_dependencies.courseId],
references: [courses.id],
}),
courseDependency: one(courses, {
fields: [course_dependencies.dependencyCourseId],
references: [courses.id],
}),
})
);
4 replies
DTDrizzle Team
Created by JustKira on 12/17/2023 in #help
update not working
nvm its problem with supabase RLS for some reason blocks api
2 replies