Skip to content

v1.6.0

Choose a tag to compare

@github-actions github-actions released this 03 Dec 17:19
· 137 commits to main since this release

Winter Release

Snowflake

✨ What's New

🎁 defineField Function

A brand new way to define your GraphQL field resolvers!

// ✅ New way (recommended)
export const myResolver = defineField({
  User: {
    fullName: (parent) => `${parent.firstName} ${parent.lastName}`
  }
})

// ⚠️ Old way (deprecated)
export const myResolver = defineType({ ... })

💡 Note: defineType still works but will be removed in a future version


🐛 Bug Fixes

  • 🔧 Fixed custom type paths in TypeScript configuration (#48)

📊 Release Info

🏷️
Version
1.6.0
📅
Date
Dec 2025
📦
Package
npm

📜 Full Changelog

Compare: v1.5.0...v1.6.0


Footer

Happy coding!