Black N White
Black N White4w ago

SwiftUI with Convex and Clerk problem :

in my app, I'm integrating Convex with Clerk auth, in my swiftUI ios app. Before signing in, I have no problems talking to the Convex Backend. I did all the steps. When I sign in, I print the auth state in the xcode logs, which says authenticated - with the JWT. But after that, whenever I try to call a convex function, eg:
convex.client.subscribe(to: "profiles:getAll", yielding: [ProfileResult].self)
.sink(receiveCompletion: { completion in
if case .failure(let error) = completion {
print("Profiles subscription error: \(error)")
}
}, receiveValue: { [weak self] result in
self?.profiles = result.map { Profile(fromResult: $0) }
if self?.activeProfileID == nil && !result.isEmpty {
self?.activeProfileID = self?.profiles.first?.id
}
})
.store(in: &cancellables)
convex.client.subscribe(to: "profiles:getAll", yielding: [ProfileResult].self)
.sink(receiveCompletion: { completion in
if case .failure(let error) = completion {
print("Profiles subscription error: \(error)")
}
}, receiveValue: { [weak self] result in
self?.profiles = result.map { Profile(fromResult: $0) }
if self?.activeProfileID == nil && !result.isEmpty {
self?.activeProfileID = self?.profiles.first?.id
}
})
.store(in: &cancellables)
the process stops there. I don't get any logs in Convex. I don't get the xcode console log of "Profiles subscription error: (error)". I also cannot call any other mutations or subscribe to a query. I did a simple testQuery :
import { query } from "./_generated/server";

export const testQuery = query({
handler: async (ctx) => {
return ["Test succeeded"];
},
});
import { query } from "./_generated/server";

export const testQuery = query({
handler: async (ctx) => {
return ["Test succeeded"];
},
});
That doesn't work either. Nothing is reaching client to Convex, nor Convex to Client.
1 Reply
Convex Bot
Convex Bot4w ago
Thanks for posting in <#1088161997662724167>. Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets. - Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.) - Use search.convex.dev to search Docs, Stack, and Discord all at once. - Additionally, you can post your questions in the Convex Community's <#1228095053885476985> channel to receive a response from AI. - Avoid tagging staff unless specifically instructed. Thank you!

Did you find this page helpful?